Quantcast
Channel: Tweetinvi a friendly Twitter C# library
Viewing all articles
Browse latest Browse all 4126

New Post: Searching tweets

$
0
0
Your scenario is very vagues but anyway. As you said you wanted to get tweets in live I would use the Streaming API with the FilteredStream.
var fs = Stream.CreateFilteredStream();
fs.AddTrack("#myhashtag");
fs.MatchingTweetReceived += (sender, args) =>
{
    var tweet = args.Tweet;
    // Do whatever you want with your tweet
};
fs.StartStreamMatchingAllConditions();
Linvi

Viewing all articles
Browse latest Browse all 4126

Trending Articles