Authorization¶
The list of authentication methods will be updated, and for some platforms, we'll try to automate this process.
Name and Password¶
Balancy.Auth.WithName(<username>, <password>, authResponse =>
{
Debug.Log("Authorized " + authResponse.Success);
if (authResponse.Success)
Debug.Log("User id: " + authResponse.UserId);
});
As a Guest using the Device ID¶
Balancy.Auth.AsGuest(authResponse =>
{
Debug.Log("Authorized " + authResponse.Success);
if (authResponse.Success)
Debug.Log("User id: " + authResponse.UserId);
});