Collect post data from mastodon search
Source:R/Collect.search.mastodon.R
Collect.search.mastodon.RdThis function collects posts based on search terms and structures the data into a dataframe with
the class names "datasource" and "mastodon".
Usage
# S3 method for class 'search.mastodon'
Collect(
credential,
endpoint,
hashtag = NULL,
instance = NULL,
local = FALSE,
numPosts = 100,
anonymous = TRUE,
retryOnRateLimit = TRUE,
...,
writeToFile = FALSE,
verbose = TRUE
)Arguments
- credential
A
credentialobject generated fromAuthenticatewith class name"mastodon".- endpoint
API endpoint.
- hashtag
Character string. Specifies a mastodon query to search on e.g #hashtag. Set to
NULLfor unfiltered public posts. Default isNULL.- instance
Character string. Server to collect posts from. Default is
NULL.- local
Logical. Search the local server or global timeline.
FALSE.- numPosts
Numeric. Specifies how many tweets to be collected. Default is
100.- anonymous
Logical. Collect public posts without authenticating. Default is
TRUE.- retryOnRateLimit
Logical. When the API rate-limit is reached should the collection wait and resume when it resets. Default is
TRUE.- ...
Arguments passed on to
rtoot::get_timeline_hashtagonly_medialogical, Show only statuses with media attached?
min_idcharacter or
POSIXct(date time), Return results immediately newer than this id
- writeToFile
Logical. Write collected data to file. Default is
FALSE.- verbose
Logical. Output additional information. Default is
TRUE.