我正在尝试获取特定用户制作的收藏推文列表。他们的推特账户表明他们已经收到了近20万条推文,但通过API返回的收藏列表只有大约2,300条收藏的推文。下面是我的python代码示例:
api = tweepy.API(auth)
test_user = "someuser"
#print out each favorited tweet
for page in tweepy.Cursor(api.favorites,id=test_user,wait_on_rate_limit=True,
count=200).pages(200):
for status in page:
print status.user.screen_name.encode('utf-8') + ": "
+ status.text.encode('utf-8')
我认为count = 200而pages = 200会给我最多40,000条推文。我错过了什么吗?