OAuthOptions

@JsonClass(generateAdapter = true)
data class OAuthOptions(val loginRedirectURL: String? = null, val signupRedirectURL: String? = null, val providers: List<OAuthProvider> = emptyList()) : Parcelable

A data class representing the configuration options for the OAuth product

Constructors

Link copied to clipboard
constructor(loginRedirectURL: String? = null, signupRedirectURL: String? = null, providers: List<OAuthProvider> = emptyList())

Properties

Link copied to clipboard

The redirect url for logins. This should use the same scheme/host set in manifest

Link copied to clipboard

A list of OAuthProviders that you would like to support

Link copied to clipboard

The redirect url for signups. This should use the same scheme/host set in your manifest