R/favorites.R
get_favorites.Rd
Returns up to 3,000 statuses favorited by each of one or more specific Twitter users.
get_favorites( user, n = 200, since_id = NULL, max_id = NULL, parse = TRUE, token = NULL )
user | Vector of user names, user IDs, or a mixture of both. |
---|---|
n | Specifies the number of records to retrieve. Defaults to 200. 3000 is the max number of favorites returned per token. Due to suspended or deleted content, this function may return fewer tweets than the desired (n) number. Must be of length 1 or of length equal to the provided number of users. |
since_id | Returns results with an status_id greater than (that is, more recent than) the specified status_id. There are limits to the number of tweets returned by the REST API. If the limit is hit, since_id is adjusted (by Twitter) to the oldest ID available. |
max_id | Character, returns results with an ID less than (that is, older than) or equal to `max_id`. |
parse | Logical, indicating whether to return parsed vector or
nested list object. By default, |
token | Every user should have their own Oauth (Twitter API) token. By
default |
A tbl data frame of tweets data with users data attribute.
https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/get-favorites-list
Other tweets:
get_mentions()
,
get_my_timeline()
,
get_timeline()
,
lists_statuses()
,
lookup_statuses()
,
search_tweets()
,
tweets_data()
,
tweets_with_users()
if (FALSE) { ## get max number of statuses favorited by KFC kfc <- get_favorites("KFC", n = 3000) kfc ## get 400 statuses favorited by each of three users favs <- get_favorites(c("Lesdoggg", "pattonoswalt", "meganamram")) favs }