Returns the posts liked by the authenticating user.
Requires OAuth authentication (see rtumblr_auth()).
Usage
get_user_likes(
limit = 20,
offset = 0,
n = limit,
after,
before,
app_credentials = NULL,
...
)Arguments
- limit
The number of results to return per request: 1-20
- offset
post index to start at
- n
maximum number of posts to retrieve across pages (default
limit, i.e. a single page). UseInfto retrieve all posts of the blog.- after
integer. Retrieve posts liked after the specified timestamp
- before
integer. Retrieve posts liked before the specified timestamp
- app_credentials
a named list containing the consumer key and consumer secret. If NULL, attempts to load from an env variable
- ...
further parameters as described here: https://www.tumblr.com/docs/en/api/v2
