get_mentions | R Documentation |
Returns data on up to 200 of the most recent mentions (Tweets containing a users' screen_name) of the authenticating user. The timeline returned is the equivalent of the one seen when you view your mentions on twitter.com.
get_mentions(
n = 200,
since_id = NULL,
max_id = NULL,
parse = TRUE,
retryonratelimit = NULL,
verbose = TRUE,
token = NULL,
...
)
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 |
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 |
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 |
... |
Other arguments passed as parameters in composed API query. |
Tibble of mentions data.
https://developer.twitter.com/en/docs/twitter-api/v1/tweets/timelines/overview
rtweet-deprecated
Other tweets:
get_favorites()
,
get_timeline()
,
lists_statuses()
,
lookup_tweets()
,
search_tweets()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.