get_feed_likes {atrrr} | R Documentation |
Get likes of a feed
Description
Get likes of a feed
Usage
get_feed_likes(
feed_url,
limit = 25L,
cursor = NULL,
parse = TRUE,
verbose = NULL,
.token = NULL
)
Arguments
feed_url |
the URL of a feed for which to retrieve who liked it. |
limit |
Maximum number of records to return. For queries with more than 100 results, pagination is used automatically (one request per 100 results). The function stops when the limit is reached, but you will usually get a few items more than requested. |
cursor |
Cursor for pagination (to pick up an old search). |
parse |
Parse the results or return the original nested object sent by the server. |
verbose |
Whether to print status messages to the Console
( |
.token |
If you manage your own tokens, you can supply it here. Usually
|
Value
a data frame (or nested list) of likes/reposts
Examples
## Not run:
# use the URL of a feed
get_feed_likes("https://bsky.app/profile/did:plc:2zcfjzyocp6kapg6jc4eacok/feed/aaaeckvqc3gzg")
# or search for a feed by name
res <- search_feed("#rstats")
get_feed_likes(res$uri[1])
## End(Not run)