Skip to contents

An oauth2_implicit_flow object describes the configuration for the OAuth Implicit flow.

Usage

class_oauth2_implicit_flow(
  authorization_url = character(),
  ...,
  refresh_url = character(),
  scopes = class_scopes()
)

Arguments

authorization_url

Character vector (required). The authorization URL to be used for this flow. This must be in the form of a URL. The OAuth2 standard requires the use of TLS.

...

These dots are for future extensions and must be empty.

refresh_url

Character scalar (optional). The URL to be used for obtaining refresh tokens. This must be in the form of a URL. The OAuth2 standard requires the use of TLS.

scopes

An optional class_scopes() object with the available scopes for the OAuth2 security scheme.

Value

An oauth2_implicit_flow S7 object, with fields authorization_url, refresh_url, and scopes.

Examples

class_oauth2_implicit_flow(
  authorization_url = "https://example.com/authorize",
  refresh_url = "https://example.com/refresh"
)
#> <rapid::oauth2_implicit_flow>
#>  @ refresh_url      : chr "https://example.com/refresh"
#>  @ scopes           : <rapid::scopes>
#>  .. @ name       : chr(0) 
#>  .. @ description: chr(0) 
#>  @ authorization_url: chr "https://example.com/authorize"