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.

I am newly started searching the twitter API and to gain time I would like to ask and hope to learn about that. Which method of Twitter API can give me someone's all tweets between a date period. (I will set that user and date period. And using PHP)

share|improve this question

3 Answers

up vote 1 down vote accepted

None.

Twitter API has limitations and this is quite understandable because of the number of tweets in the database and the load that could be created by such queries.

You may use user_timeline however, if last 32000 updates will suffice.

share|improve this answer
Hey Tadeck, There is not sufficient explanation about the user_timeline so I would like to ask you that. When I use this: $content = $connection->get('statuses/user_timeline', array('screen_name' => 'mytwittername')); It won't work. How can I access that 32000 update? – gencay May 22 '11 at 20:57
@gencay The single request can get you up to 200 tweets (see: count parameter in the documentation). To access these 32000 tweets, you will have to make 160 requests (32000/200). Thus you will have to read about rate limiting (and probably employ some walkaround techniques listed there, or try to convince Twitter you really need that). As I said, Twitter API has to be limited because of the amount of data etc. – Tadeck May 22 '11 at 22:32

i think you can use since and until operators offered by the search api

check: https://dev.twitter.com/docs/using-search the operators part.

an example would be: http://search.twitter.com/search.json?q=egypt&since=2011-11-28&until=2011-11-30

share|improve this answer

For the standard Twitter API, you can't do that, you can only get tweets since a certain tweet id, and even then you're capped at how many tweets you can get back.

For the search API, I tried a few methods using the until parameter, but could not get anything useful out of it.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.