You need to use
I just tested by replying to bbctopgear and it works as expected.
Hope this helps.
Lokesh
fs.AddFollow()
. It gives all tweets made by the user and all tweets mentioning the user (including retweets of the user's tweets by other users).var stream = Stream.CreateFilteredStream(); stream.AddFollow(User.GetUserFromScreenName("BBC_TopGear")); stream.MatchingTweetReceived += (sender, args) => Console.WriteLine(args.Tweet.Text); stream.StreamStarted += (sender, args) => Console.WriteLine("stream started..."); stream.StartStreamMatchingAnyCondition();
Hope this helps.
Lokesh