I am using python-twitter library, but I am unable to get all the timeline of a specified user.
api = twitter.Api(consumer_key='',
consumer_secret='',
access_token_key='',
access_token_secret='')
statuses = api.GetUserTimeline(screen_name = "me", count = 2000)
print len(statues)
always returns:
200
How can I get all timeline of one user?