Learn R Programming

rtweet (version 1.2.1)

client_as: Set default client for the current session

Description

client_as() sets up the default client used by rtweet API calls with PKCE. See rtweet_user() to learn more about the three available authentication options.

Usage

client_as(client = NULL)

Value

Invisibly returns the previous authentication mechanism.

Arguments

client

One of the following options:

  • NULL, the default, will look for rtweet's "default" authentication which uses your personal default Twitter client. If it's not found, it will call client_setup_default() to set it up.

  • A string giving the name of a saved auth file made by client_save().

  • A client object created by rtweet_client().

See Also

Other client: client_get(), client_has_default(), client_save()

Examples

Run this code
if (FALSE) {
# Use app auth for the remainder of this session:
my_app <- rtweet_app()
auth_as(my_app)

# Switch back to the default user based auth
client_as()
client_list()
}

Run the code above in your browser using DataLab