Skip to main content
Version: 5.7.0

MergeFacebookLimitedIdentity

Merge the user's Facebook Limited login credentials with the current profile.

ServiceOperation
identityMERGE

Method Parameters

ParameterDescription
facebookIdThe facebook id of the user
authenticationTokenThe validated token from the Facebook SDK (that will be further validated when sent to the brainCloud service)

Usage

http://localhost:3000
string facebookId = "someFacebookId";
string authenticationToken = "someFacebookAuthToken";

_bc.IdentityService.MergeFacebooLimitedkIdentity(
facebookId,
authenticationToken,
SuccessCallback, FailureCallback);
JSON Response
{  
"data":{
"profileId":"f94f7e2d-3cdd-4fd6-9c28-392f7875e9df"
},
"status":200
}