Hello I just check Streaming API documentation
and see following functionality
if i add:
am i missing any parameters here? (like replies=all)
This is a part of documentation:
follow
A comma-separated list of user IDs, indicating the users whose Tweets should be delivered on the stream. Following protected users is not supported. For each user specified, the stream will contain:
Tweets created by the user.
Tweets which are retweeted by the user.
Replies to any Tweet created by the user.
Retweets of any Tweet created by the user.
Manual replies, created without pressing a reply button (e.g. “@twitterapi I agree”).
The stream will not contain:
Tweets mentioning the user (e.g. “Hello @twitterapi!”). Manual Retweets created without pressing a Retweet button (e.g. “RT @twitterapi The API is great”).
Tweets by protected users.
and see following functionality
if i add:
var stream = Stream.CreateFilteredStream();
stream.AddFollow(5402612);
it shows only original user Tweets, but not other users replies, that i needam i missing any parameters here? (like replies=all)
This is a part of documentation:
follow
A comma-separated list of user IDs, indicating the users whose Tweets should be delivered on the stream. Following protected users is not supported. For each user specified, the stream will contain:
Tweets created by the user.
Tweets which are retweeted by the user.
Replies to any Tweet created by the user.
Retweets of any Tweet created by the user.
Manual replies, created without pressing a reply button (e.g. “@twitterapi I agree”).
The stream will not contain:
Tweets mentioning the user (e.g. “Hello @twitterapi!”). Manual Retweets created without pressing a Retweet button (e.g. “RT @twitterapi The API is great”).
Tweets by protected users.