OAuth2 implicit flow object
Source:R/components-security_scheme-oauth2-implicit_flow.R
class_oauth2_implicit_flow.Rd
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
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.
See also
security scheme objects
as_api_key_security_scheme()
,
as_oauth2_authorization_code_flow()
,
as_oauth2_implicit_flow()
,
as_oauth2_security_scheme()
,
as_oauth2_token_flow()
,
as_scopes()
,
as_security_scheme()
,
as_security_scheme_details()
,
as_security_schemes()
,
class_api_key_security_scheme()
,
class_oauth2_authorization_code_flow()
,
class_oauth2_security_scheme()
,
class_oauth2_token_flow()
,
class_scopes()
,
class_security_scheme_details()
,
class_security_schemes()
components object
as_api_key_security_scheme()
,
as_components()
,
as_oauth2_authorization_code_flow()
,
as_oauth2_implicit_flow()
,
as_oauth2_security_scheme()
,
as_oauth2_token_flow()
,
as_reference()
,
as_schema()
,
as_scopes()
,
as_security_scheme()
,
as_security_scheme_details()
,
as_security_schemes()
,
class_api_key_security_scheme()
,
class_components()
,
class_oauth2_authorization_code_flow()
,
class_oauth2_security_scheme()
,
class_oauth2_token_flow()
,
class_reference()
,
class_schema()
,
class_scopes()
,
class_security_scheme_details()
,
class_security_schemes()
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"