rest - Retrieving all(!) of the tweets of a user -
i want tweets of user using twitter api 1.1 , end point:
https://api.twitter.com/1.1/statuses/user_timeline.json
the documents of twitter api https://dev.twitter.com/rest/reference/get/statuses/user_timeline says there's limit 3200 (the parameter count
). if that's case, how retrieve all(!) of tweets of user, not 3200?
the simple answer cannot.
the longer answer there 2 ways around this.
- the user can request twitter archive. contain list of every tweet have sent.
- the new search api indexes every tweet. can, theoretically, search each tweet. however, if don't know you're searching for, it's unlikely work.
Comments
Post a Comment