FacebookAuthConfiguration Constructor (String, String, String, String) |
Initializes a configuration object with the given properties.
Namespace: Oracle.Cloud.Mobile.ConfigurationAssembly: Oracle.Cloud.Mobile (in Oracle.Cloud.Mobile.dll) Version: 16.1.3.1 (16.1.3.1)
Syntaxpublic FacebookAuthConfiguration(
string backendId,
string anonymousToken,
string appId,
string scope = ""
)
Public Sub New (
backendId As String,
anonymousToken As String,
appId As String,
Optional scope As String = ""
)
public:
FacebookAuthConfiguration(
String^ backendId,
String^ anonymousToken,
String^ appId,
String^ scope = L""
)
new :
backendId : string *
anonymousToken : string *
appId : string *
?scope : string
(* Defaults:
let _scope = defaultArg scope ""
*)
-> FacebookAuthConfiguration
Parameters
- backendId
- Type: SystemString
The ID of the Mobile Backend. - anonymousToken
- Type: SystemString
The token for anonymous Basic Authentication for the Mobile Backend. - appId
- Type: SystemString
The ID of app registered on Facebook. - scope (Optional)
- Type: SystemString
Optional permissions requested from Facebook.
See Also