Python で Twitter API を使用する場合、ツイートをリツイートしたすべてのユーザーのすべてのユーザー ID を取得する方法を知る必要があります。
私はここに行きました: https://dev.twitter.com/docs/api/1/get/statuses/%3Aid/retweeted_by
しかし、それをpythonに入れる方法がわかりません。
これまでの私のコードは次のとおりです。
from twitter import *
t = Twitter(auth=OAuth(....))
twitter = t.statuses.user_timeline.snl()
twitter[0]['text'] # gets the tweet
twitter[0]['retweet_count'] # gets the number of retweets
リツイートしたすべてのユーザーの ID を取得する次の行は何ですか?