get_retweets()
returns the 100 most recent retweets of a tweet;
get_retweeters()
returns the 100 most recent users who retweeted them.
get_retweets(status_id, n = 100, parse = TRUE, token = NULL, ...)get_retweeters(status_id, n = 100, parse = TRUE, token = NULL)
Tweets data of the most recent retweets/retweeters of a given status.
Tweet/status id.
Number of results to retrieve. Must be <= 100.
If TRUE
, the default, returns a tidy data frame. Use FALSE
to return the "raw" list corresponding to the JSON returned from the
Twitter API.
Use this to override authentication for
a single API call. In many cases you are better off changing the
default for all calls. See auth_as()
for details.
Other arguments used as parameters in the query sent to
Twitter's rest API, for example, trim_user = TRUE
.