OAuth Authorize Options
data class OAuthAuthorizeOptions(val redirectUri: String = "io.fusionauth.app:/oauth2redirect", val idpHint: String? = null, val loginHint: String? = null, val deviceDescription: String? = null, val nonce: String? = null, val state: String? = null, val userCode: String? = null, val cancelIntent: ERROR CLASS: Symbol not found for Intent?? = null)
OAuthAuthorizeOptions is a data class that represents the options for the OAuth authorize request.
See FusionAuth OAuth 2.0 Authorization Endpoint for more information.
Properties
Link copied to clipboard
An optional intent to be used when the user cancels the OAuth authorize request.
Link copied to clipboard
An optional human-readable description of the device used during login.
Link copied to clipboard
The redirect URI to be used for the OAuth authorize request. Default is "io.fusionauth.app:/oauth2redirect".