Description Usage Arguments Value See Also Examples
Returns data on up to 90,000 Twitter statuses. To return data on more than 90,000 statuses, users must iterate through status IDs whilst avoiding rate limits, which reset every 15 minutes.
1 2 3 | lookup_statuses(statuses, parse = TRUE, token = NULL)
lookup_tweets(statuses, parse = TRUE, token = NULL)
|
statuses |
User id or screen name of target user. |
parse |
Logical, indicating whether or not to parse return object into data frame(s). |
token |
a twitter token. |
A data.frame of tweets data.
https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/get-statuses-lookup
Other tweets:
get_favorites()
,
get_timeline()
,
lists_statuses()
,
search_tweets()
,
tweets_data()
,
tweets_with_users()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
## create object containing status IDs
statuses <- c(
"567053242429734913",
"266031293945503744",
"440322224407314432"
)
## lookup tweets data for given statuses
tw <- lookup_statuses(statuses)
tw
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.