FacebookArgs

data class FacebookArgs(val enabled: Output<Boolean>? = null, val graphApiVersion: Output<String>? = null, val login: Output<LoginScopesArgs>? = null, val registration: Output<AppRegistrationArgs>? = null) : ConvertibleToJava<FacebookArgs>

The configuration settings of the Facebook provider.

Constructors

Link copied to clipboard
constructor(enabled: Output<Boolean>? = null, graphApiVersion: Output<String>? = null, login: Output<LoginScopesArgs>? = null, registration: Output<AppRegistrationArgs>? = null)

Properties

Link copied to clipboard
val enabled: Output<Boolean>? = null

false if the Facebook provider should not be enabled despite the set registration; otherwise, true.

Link copied to clipboard
val graphApiVersion: Output<String>? = null

The version of the Facebook api to be used while logging in.

Link copied to clipboard
val login: Output<LoginScopesArgs>? = null

The configuration settings of the login flow.

Link copied to clipboard
val registration: Output<AppRegistrationArgs>? = null

The configuration settings of the app registration for the Facebook provider.

Functions

Link copied to clipboard
open override fun toJava(): FacebookArgs