Transition from Guest Login to Other Provider
Prerequisites
Transitioning a Player
// The token retrieved from authenticating with Apple in the game client
string token = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.0.xxxxx.xxxxxxxx-xxxxxxxxxxxxx";
LootLockerSDKManager.ConnectAppleAccount(token, (response) =>
{
if(!response.success)
{
Debug.Log("Error connecting Apple");
return;
}
Debug.Log("Successfully connected Apple");
});Conclusion
Last updated
Was this helpful?


