ReauthenticateOptions

data class ReauthenticateOptions @JvmOverloads constructor(var redirectUri: String, var xState: String? = null, var uiLocales: List<String>? = null, var colorScheme: ColorScheme? = null, var maxAge: Int? = null, var wechatRedirectURI: String? = null, var authenticationFlowGroup: String? = null, var oauthProviderAlias: String? = null)

Reauthentication options.

Constructors

Link copied to clipboard
constructor(redirectUri: String, xState: String? = null, uiLocales: List<String>? = null, colorScheme: ColorScheme? = null, maxAge: Int? = null, wechatRedirectURI: String? = null, authenticationFlowGroup: String? = null, oauthProviderAlias: String? = null)

Properties

Link copied to clipboard

Authentication flow group

Link copied to clipboard

Theme override

Link copied to clipboard
var maxAge: Int?

OIDC max_age. The default is 0 if not provided.

Link copied to clipboard

OAuth provider alias

Link copied to clipboard

Redirection URI to which the response will be sent after authorization.

Link copied to clipboard

UI locale tags

Link copied to clipboard

WeChat redirect uri is needed when integrating WeChat login The wechatRedirectURI will be called when user click the login with WeChat button

Link copied to clipboard

Use this parameter to provide parameters from the client application to Custom UI. The string in xState can be accessed by the Custom UI. Ignore this parameter if default AuthUI is used