get_own_timeline {atrrr} | R Documentation |
Get your own timeline
Description
Get the posts that would be shown when you open the Bluesky app or website.
Usage
get_own_timeline(
algorithm = NULL,
limit = 25L,
cursor = NULL,
parse = TRUE,
verbose = NULL,
.token = NULL
)
Arguments
algorithm |
algorithm used to sort the posts |
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 posts
Examples
## Not run:
get_own_timeline()
get_own_timeline(algorithm = "reverse-chronological")
## End(Not run)