rtweet (version 0.3.0)

get_favorites: get_favorites

Description

Returns the 20 most recent Tweets liked by the authenticating or specified user.

Usage

get_favorites(user, n = 3000, since_id = NULL, max_id = NULL,
  parse = TRUE, token = NULL)

Arguments

user

Screen name or user id of target user.

n

Specifies the number of records to retrieve. Must be less than or equal to 200; defaults to 3000, which 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.

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

Returns results with status_id less (older) than or equal to (if hit limit) the specified status_id.

parse

Logical, indicating whether to return parsed vector or nested list (fromJSON) object. By default, parse = TRUE saves you the time [and frustrations] associated with disentangling the Twitter API return objects.

token

OAuth token. By default token = NULL fetches a non-exhausted token from an environment variable. Find instructions on how to create tokens and setup an environment variable in the tokens vignette (in r, send ?tokens to console).

Value

Tweets data frame.

See Also

Other tweets: get_timeline, lookup_statuses, search_tweets, stream_tweets, tweets_data

Examples

Run this code
# NOT RUN {
# get ids of users following the president of the US
pres <- get_followers(user = "potus")
pres

# get ids of users following the Environmental Protection Agency
epa <- get_followers(user = "epa")
epa
# }

Run the code above in your browser using DataCamp Workspace