Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does Twitter's streaming API (stream.twitter.com/1/statuses/sample.json) give the most recent tweets? For example, current new york time is 9.20 AM, one of the tweets I got through this method had the created_date as Wed Oct 06 13:13:42 +0000 2010. Does this mean the tweets returned by this API could be a few hours old? Or does it return the latest tweets (as in few minutes or seconds old)?

share|improve this question

2 Answers

up vote 1 down vote accepted

The streaming API returns a sample of tweets - for non privileged users, it's only 5% of the stream. You can request access to the Firehose, which is all tweets, but you must have a good reason to do so. I think you can buy access too.

When dealing with user streams, this doc indicates that you should be getting the data in near realtime, so I don't think you should see such a big delay.

EDIT: See this. 13:13:42 +0000 2010 is actually 9:13:42 EST. I just checked, I'm on EST, 10:27 AM, and the time is 14:27 GMT +000. Your results are very close to actual time within minutes, not hours.

share|improve this answer
It says near realtime, but looks like the tweets are a few hours old. – user187809 Oct 6 '10 at 13:47
right, I should've checked it first. Thanks – user187809 Oct 6 '10 at 15:11
Less than a second for me. – Axsuul Mar 19 '12 at 23:25

Tweets from the streaming API are real-time. I run many tweet collection systems for clients, and everyone of them gets and displays tweets as soon as they are posted on Twitter. The delay between a tweet being posted and receiving it from the streaming API is usually a second or two.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.