Reputation: 2153
When a tweet is tweeted how do I get the name of the people that retweeted that tweet. On Twitter you can see their profile image. But using the infos in the JSON of the tweet how can I retrieve that list of screename?
Upvotes: 1
Views: 1645
Reputation: 4048
id
of the tweet.statuses/retweets
documented here https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/get-statuses-retweets-iduser
property which contains their screen_name
and other info.Upvotes: 2