Skip to content Skip to sidebar Skip to footer

How Can I Get Tweets More Than A Year

I'm trying to get twitters timelime using tweepy, but I can't get old tweets that are more than a year ago. My Python script is shown below: #!/usr/bin/env python # -*- coding:utf-

Solution 1:

The Twitter Search API is limited to 7 days of history, and the timeline APIs are limited on the number of Tweets that can be retrieved. Actually you should only be able to fetch 3200 Tweets so I'm not sure how you're seeing 9800.

If you need historic data, then Twitter's Gnip products offer comprehensive coverage. These are commercial APIs.

Post a Comment for "How Can I Get Tweets More Than A Year"