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: ** Comment from web user: linvi **
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: ** Comment from web user: linvi **
I will investigate this issue but in the meantime please know that Stream gives access to a maximum of 1% of the Tweets published on Twitter (I do not believe Uruguay is present in 1% of the Tweets).
The search in the same time does behave differently so please check that when you perform a search you receive only the latest tweets and not the most "popular".
As I said, I will come back to you as soon as I have investigate this issue.