Reputation: 1487
I have written a script to get all tweets from a given user and save them to a CSV. However I am noticing that I can only get 3182 tweets from any user supplied to the script. Is there some limit put in place by Twitter? Is there a way to get around this?
As a reference, here is my script.
Upvotes: 1
Views: 84
Reputation:
This is a Twitter-side limitation. Per the documentation:
This method can only return up to 3,200 of a user’s most recent Tweets. Native retweets of other statuses by the user is included in this total, regardless of whether include_rts is set to false when requesting this resource.
Tweets beyond this horizon are difficult to find, even through the Twitter website — they will only appear if requested by ID. If you want an archive of all your tweets, use the "Request archive" feature in the Twitter settings.
Upvotes: 1