
Get all lists a specified user subscribes to, including their own.
Source:R/lists_users.R
lists_users.Rd
Get all lists a specified user subscribes to, including their own.
Arguments
- user
Character vector of screen names or user ids. See
as_screenname()
for more details.- reverse
optional Set this to true if you would like owned lists to be returned first. See description above for information on how this parameter works.
- 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
auth_as()
for details.- parse
If
TRUE
, the default, returns a tidy data frame. UseFALSE
to return the "raw" list corresponding to the JSON returned from the Twitter API.
See also
Other lists:
lists_members()
,
lists_statuses()
,
lists_subscribers()
,
lists_subscriptions()
Examples
if (auth_has_default()) {
## get lists subscribed to by R_Foundation
lists_users("ropensci")
}