View source: R/lists_members.R
lists_members | R Documentation |
Get Twitter list members (users on a given list).
lists_members(
list_id = NULL,
slug = NULL,
owner_user = NULL,
n = 5000,
cursor = "-1",
token = NULL,
retryonratelimit = NULL,
verbose = TRUE,
parse = TRUE,
...
)
list_id |
required The numerical id of the list. |
slug |
required You can identify a list by its slug instead of its numerical id. If you decide to do so, note that you'll also have to specify the list owner using the owner_id or owner_user parameters. |
owner_user |
optional The screen name or user ID of the user |
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. |
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 |
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? |
parse |
If |
... |
Other arguments used as parameters in query composition. |
Other lists:
lists_statuses()
,
lists_subscribers()
,
lists_subscriptions()
,
lists_users()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.