Skip to main content
Version: 5.7.0

GetIdentities

Retrieve a list of all non-anonymous identities for the current user.

ServiceOperation
identityGET_IDENTITIES

Usage

http://localhost:3000
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.IdentityService.GetIdentities(successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": {
"identities": {
"Facebook": "1643467965855411",
"Twitter": "1540072657634435075"
}
}
}