FunctionAppAuthSettingsFacebookArgs

data class FunctionAppAuthSettingsFacebookArgs(val appId: Output<String>, val appSecret: Output<String>, val oauthScopes: Output<List<String>>? = null) : ConvertibleToJava<FunctionAppAuthSettingsFacebookArgs>

Constructors

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

Properties

Link copied to clipboard
val appId: Output<String>

The App ID of the Facebook app used for login

Link copied to clipboard
val appSecret: Output<String>

The App Secret of the Facebook app used for Facebook login.

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

The OAuth 2.0 scopes that will be requested as part of Facebook login authentication. https://developers.facebook.com/docs/facebook-login

Functions

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