0

我正在尝试将其实现到 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()
    retweetids = t.statuses.retweeted_by(id=str(tweets[0]['id']))    <<does not work.
    print retweetids
4

1 回答 1

0

使用 retweets 而不是转发者

于 2013-06-20T14:47:42.150 回答