在python中使用twitter api命令实现有困难

时间:2013-06-18 13:13:36

标签: python api twitter encoding implementation

我正在尝试将其实现为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?

3 个答案:

答案 0 :(得分:0)

所以在你这样做之后

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。

答案 1 :(得分:0)

请在此帖子中查看我的解决方案:difficulty using twitter api command implemention in python

但确实使用了Twyton API。

答案 2 :(得分:0)

使用tweeters代替。繁荣。我自己想出来了

t.statuses.retweets(....)