See demos for use.
init_oauth2.0(endpoint, app, scope = NULL, user_params = NULL,
type = NULL, use_oob = getOption("httr_oob_default"),
is_interactive = interactive(), use_basic_auth = FALSE)
An OAuth endpoint, created by oauth_endpoint
An OAuth consumer application, created by
oauth_app
a character vector of scopes to request.
Named list holding endpoint specific parameters to pass to the server when posting the request for obtaining or refreshing the access token.
content type used to override incorrect server response
if FALSE, use a local webserver for the OAuth dance.
Otherwise, provide a URL to the user and prompt for a validation
code. Defaults to the of the "httr_oob_default"
default,
or TRUE
if httpuv
is not installed.
Is the current environment interactive?
if TRUE
use http basic authentication to
retrieve the token. Some authorization servers require this.
If FALSE
, the default, retrieve the token by including the
app key and secret in the request body.