Imlokesh is right, a Tweet can be matching both a Track and a Follow.
Therefore you can get this information easily by checking the Creator Id of a Tweet.
Please note that I am using a HashSet and its .Contains method for obvious performance issues.
Linvi
Therefore you can get this information easily by checking the Creator Id of a Tweet.
var ids = new HashSet<long>( /* Put your follower ids here */ ); var fs = Stream.CreateFilteredStream(); ids.ForEach(id => fs.AddFollow(id)); fs.MatchingTweetReceived += (sender, args) => { var tweet = args.Tweet; var followerId = tweet.Creator.Id; if (ids.Contains(followerId)) { // Follower posted this tweet } }; fs.StartStreamMatchingAnyCondition();
Linvi