I’m using the python library Tweepy to make GET requests of the Twitter API.
When I run my program - which gets all friends/ids, then gets user/timeline for the 300 most-followed - I get this error from Tweepy:
{"errors":[{"message":"Rate limit exceeded","code":88}]}
However, when I printed out the rate limit status:
api.rate_limit_status()
…and check the “remaining” attribute of each resource, not a single resource has reached the end of remaining requests.
Example:
'/friends/ids': {'reset': 1416804275, 'limit': 15, 'remaining': 14}
How can I find out which rate limit I’m hitting when checking the rate limit status doesn’t reveal anything?
Thank you!