lookup_statuses: Get tweets data for given statuses (status IDs).

Description Usage Arguments Value See Also Examples

View source: R/statuses.R

Description

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.

Usage

1
2
3
lookup_statuses(statuses, parse = TRUE, token = NULL)

lookup_tweets(statuses, parse = TRUE, token = NULL)

Arguments

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.

Value

A data.frame of tweets data.

See Also

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()

Examples

 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)

mkearney/rtw documentation built on Dec. 21, 2021, 7:05 p.m.