I have a C# application that streams all tweets created by any of my friends successfully (using Tweetinvi library and following code).
var userStream = Tweetinvi.Stream.CreateUserStream();
userStream.TweetCreatedByFriend += (sender, args) =>
{
ConsoleLog(args.Tweet.Text);
}
How (if possible) can I listen to the tweets which mention any of my friends' screen name ? e.g. I am friend with @alice. Now @bob, who is NOT my friend, tweets like this:
Hi @alice, how are you ?
How can I listen to above tweet by @bob, who is NOT my friend, and MAY or MAY NOT be friend or follower of @alice?