Search the instance for a specific user
search_accounts( query, limit = 40, token = NULL, anonymous = FALSE, parse = TRUE )
query
: character, search stringlimit
: number of search results to return. Defaults to 40token
: user bearer token (read from file by default)anonymous
: some API calls do not need a token. Setting anonymous to TRUE allows to make an anonymous call if possible.parse
: logical, if TRUE
, the default, returns a tibble. Use FALSE
to return the "raw" list corresponding to the JSON returned from the Mastodon API.a tibble ir list of accounts
## Not run: search_accounts("schochastics") ## End(Not run)
Useful links