我正在尝试将其实现到 python 中:
https://dev.twitter.com/docs/api/1.1/get/statuses/retweeters/ids
这是我到目前为止所拥有的:
def reqs():
t = Twitter(auth=OAuth('...'))
tweets = t.statuses.user_timeline.snl()
如何从用户的时间线上获取转发单个推文的用户的用户 ID?
我正在尝试将其实现到 python 中:
https://dev.twitter.com/docs/api/1.1/get/statuses/retweeters/ids
这是我到目前为止所拥有的:
def reqs():
t = Twitter(auth=OAuth('...'))
tweets = t.statuses.user_timeline.snl()
如何从用户的时间线上获取转发单个推文的用户的用户 ID?
所以在你这样做之后
from twitter import *
t = Twitter(auth=OAuth(...))
tweets = t.statuses.user_timeline.snl()
for tweet in tweets:
retweets = t.statuses.retweets_of_me(since_id=str(tweet['id']), max_id=str(tweet['id']))
idList.append(retweets)
在这一切之后,您只需通过idList
,并找到仅在列表中出现一次的 id。
改用高音扬声器。繁荣。我自己想出来的
t.statuses.retweets(....)
请在这篇文章中查看我的解决方案:在 python 中使用 twitter api 命令实现困难
但是,它确实使用了 Twyton API。