LinuxFunctionAppAuthSettingsFacebook

data class LinuxFunctionAppAuthSettingsFacebook(val appId: String, val appSecret: String? = null, val appSecretSettingName: String? = null, val oauthScopes: List<String>? = null)

Constructors

Link copied to clipboard
constructor(appId: String, appSecret: String? = null, appSecretSettingName: String? = null, oauthScopes: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The App ID of the Facebook app used for login.

Link copied to clipboard
val appSecret: String? = null

The App Secret of the Facebook app used for Facebook login. Cannot be specified with app_secret_setting_name.

Link copied to clipboard

The app setting name that contains the app_secret value used for Facebook login. Cannot be specified with app_secret.

Link copied to clipboard
val oauthScopes: List<String>? = null

Specifies a list of OAuth 2.0 scopes to be requested as part of Facebook login authentication.