Hi,
I am developing an application to process all tweets containg some tracks. For example:
SimpleStream stream = new SimpleStream("https://stream.twitter.com/1.1/statuses/sample.json");
stream.StreamStarted += (sender, args) => Console.WriteLine("Stream has started!");
// Starting the stream by specifying credentials thanks to the Token
stream.AddTrack("uruguay");
stream.StartStream(token, x => ProcessTweet(x));
The application receives far fewer tweets that are actually published. If I search the term "Uruguay" in Twitter, at the same that the application is running, the twitter web page returns more real time results.
Do you understand the question?
Thanks so much.
Best regards,
Daniel
Comments: This was not an issue, just a misunderstanding of the FilteredStream feature.
I am developing an application to process all tweets containg some tracks. For example:
SimpleStream stream = new SimpleStream("https://stream.twitter.com/1.1/statuses/sample.json");
stream.StreamStarted += (sender, args) => Console.WriteLine("Stream has started!");
// Starting the stream by specifying credentials thanks to the Token
stream.AddTrack("uruguay");
stream.StartStream(token, x => ProcessTweet(x));
The application receives far fewer tweets that are actually published. If I search the term "Uruguay" in Twitter, at the same that the application is running, the twitter web page returns more real time results.
Do you understand the question?
Thanks so much.
Best regards,
Daniel
Comments: This was not an issue, just a misunderstanding of the FilteredStream feature.