Sean W.
Sean W.

Reputation: 5132

Is it possible to access all Tweets from a user using the Twitter API?

The Twitter REST API 1.1 documentation for the GET statuses/user_timeline method states:

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.

Does this mean one can only traverse the 3,200 newest tweets form a user's timeline?

Upvotes: 0

Views: 215

Answers (1)

André Dion
André Dion

Reputation: 21748

Does this mean one can only traverse the 3,200 newest tweets form a user's timeline?

Yes, though nothing is stopping you from caching tweets yourself.

Upvotes: 0

Related Questions