【发布时间】:2018-02-15 02:46:50
【问题描述】:
所以我正在尝试使用 tweepy 找出我推文的转推
# To get first tweet
firstTweet = api.user_timeline("zzaibis")[0]
# then getting the retweet data using tweet id and it gives me the results
resultsOfFirstTweet = api.retweets(firstTweet.id)
# but when I try to find any other tweet except first tweet, this returns nothing.
secondTweet = api.user_timeline("zzaibis")[1]
知道为什么这不起作用,以及考虑到我的帐户中没有有限的推文和转发,我需要遵循什么来获取我的推文的所有转发数据。
【问题讨论】:
标签: python python-3.x twitter twitter-oauth tweepy