Save an authentication mechanism for use in a future session
Save an authentication mechanism for use in a future session
Use auth_save() with auth_as() to avoid repeatedly entering app credentials, making it easier to share auth between projects. Use auth_list() to list all saved credentials.
auth_save(auth, name)auth_list()
Arguments
auth: One of rtweet_app(), rtweet_bot(), or rtweet_user().
name: Name of the file to use.
Returns
Invisible the path where the authentication is saved.
Details
The tokens are saved on tools::R_user_dir("rtweet", "config").
Examples
## Not run:# save app auth for use in other sessionsauth <- rtweet_app()auth_save(auth,"my-app")# later, in a different session...auth_as("my-app")# Show all authentications storedauth_list()## End(Not run)
See Also
auth_sitrep() to help finding and managing authentications.
Other authentication: auth_as(), auth_get(), auth_setup_default(), rtweet_user()