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)
|
|
|
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. |
|||||
|
|
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 |
|||
|
|
|
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 |
|||
|
|
