Returns user IDs of users who retweeted a given status. At the current time, this function is limited in returning a maximum of 100 users for a given status.
get_retweeters(status_id, n = 100, parse = TRUE, token = NULL)
data
required The status ID of the desired status.
Specifies the number of records to retrieve. Best if intervals of 100.
Logical indicating whether to convert the response object into an R list. Defaults to TRUE.
Every user should have their own Oauth (Twitter API) token. By
default token = NULL
this function looks for the path to a saved
Twitter token via environment variables (which is what `create_token()`
sets up by default during initial token creation). For instruction on how
to create a Twitter token see the tokens vignette, i.e.,
`vignettes("auth", "rtweet")` or see ?tokens
.
At time of writing, pagination offers no additional data.
Other retweets:
get_retweets()