- user
Vector of user names, user IDs, or a mixture of both.
- n
Number of tweets to return per timeline. Defaults to 100.
Must be of length 1 or equal to length of user. This number should
not exceed 3200 as Twitter limits returns to the most recent 3,200
statuses posted or retweeted by each user.
- max_id
Character, returns results with an ID less than (that is,
older than) or equal to `max_id`.
- home
Logical, indicating whether to return a user-timeline
or home-timeline. By default, home is set to FALSE, which means
get_timeline
returns tweets posted by the given user. To
return a user's home timeline feed, that is, the tweets posted by
accounts followed by a user, set home to TRUE.
- parse
Logical, indicating whether to return parsed
(data.frames) or nested list object. By default, parse =
TRUE
saves users from the time [and frustrations] associated
with disentangling the Twitter API return objects.
- check
Logical indicating whether to remove check available
rate limit. Ensures the request does not exceed the maximum
remaining number of calls. Defaults to TRUE.
- token
Every user should have their own Oauth (Twitter API) token. By
default token = NULL
this function looks for the path to a saved
Twitter token via environment variables (which is what `create_token()`
sets up by default during initial token creation). For instructions on how
to create a Twitter token see the tokens vignette, i.e.,
`vignettes("auth", "rtweet")` or see ?tokens
.
- ...
Further arguments passed on as parameters in API query.