get_followers | R Documentation |
Returns a list of user IDs for the accounts following specified user.
get_followers(
user,
n = 5000,
cursor = "-1",
retryonratelimit = NULL,
parse = TRUE,
verbose = TRUE,
token = NULL,
page = lifecycle::deprecated()
)
user |
Character vector of screen names or user ids.
See |
n |
Desired number of results to return. Results are downloaded
in pages when The Twitter API rate limits the number of requests you can perform
in each 15 minute period. The easiest way to download more than that is
to use You are not guaranteed to get exactly |
cursor |
Which page of results to return. The default will return the first page; you can supply the result from a previous call to continue pagination from where it left off. |
retryonratelimit |
If If you expect a query to take hours or days to perform, you should not
rely solely on |
parse |
If |
verbose |
Show progress bars and other messages indicating current progress? |
token |
Use this to override authentication for
a single API call. In many cases you are better off changing the
default for all calls. See |
page |
A tibble data frame with one column named "from_id" with the followers and another one "to_id" with the user used as input.
rtweet-deprecated
if (FALSE) {
users <- get_followers("_R_Foundation")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.