lists_subscribers {rtweet} | R Documentation |
Get subscribers of a specified list.
Description
Get subscribers of a specified list.
Usage
lists_subscribers(
list_id = NULL,
slug = NULL,
owner_user = NULL,
n = 5000,
cursor = "-1",
parse = TRUE,
retryonratelimit = NULL,
verbose = TRUE,
token = NULL
)
Arguments
list_id |
required The numerical id of the list. |
slug , owner_user |
The list name (slug) and owner. |
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. |
parse |
If |
retryonratelimit |
If If you expect a query to take hours or days to perform, you should not
rely solely on |
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 |
References
See Also
Other lists:
lists_members()
,
lists_statuses()
,
lists_subscriptions()
,
lists_users()
Other users:
as_screenname()
,
lookup_users()
,
search_users()