View source: R/lists_statuses.R
lists_statuses | R Documentation |
Get a timeline of tweets authored by members of a specified list.
lists_statuses(
list_id = NULL,
slug = NULL,
owner_user = NULL,
since_id = NULL,
max_id = NULL,
n = 200,
include_rts = TRUE,
parse = TRUE,
retryonratelimit = NULL,
verbose = TRUE,
token = NULL
)
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_screen_name parameters. |
owner_user |
optional The screen name or user ID of the user who owns the list being requested by a slug. |
since_id |
Supply a vector of ids or a data frame of previous results to
find tweets newer than |
max_id |
Supply a vector of ids or a data frame of previous results to
find tweets older than |
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 |
include_rts |
optional When set to either true, t or 1, the list timeline will contain native retweets (if they exist) in addition to the standard stream of tweets. The output format of retweeted tweets is identical to the representation you see in home_timeline. |
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 |
data
Other lists:
lists_members()
,
lists_subscribers()
,
lists_subscriptions()
,
lists_users()
Other tweets:
get_favorites()
,
get_mentions()
,
get_timeline()
,
lookup_tweets()
,
search_tweets()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.