I am trying to get a list of all the user ids who retweeted a tweet. here is my code:
def reqs():
t = Twitter(auth=OAuth('.........'))
tweets = t.statuses.user_timeline.snl()
tw = tweets[0]['id']
td = tweets[0]['retweet_count']
rp = tweets[0]
pl = t.statuses.retweeters.ids(id=tw)
print pl
I get an error stating that the page does not exist, but when I change the line from
pl = t.statuses.retweeters.ids(id=tw)
to
pl = t.statuses.show.id(id=tw)
it works
is there something I am not seeing?