public void TokenLogin()
{
Debug.Log(“TokenLogin”);
BackendReturnObject bro = Backend.BMember.IsAccessTokenAlive();
if (bro.IsSuccess())
{
NotificationPanel.Instance.Notify();
NotificationPanel.Instance.text.text = “액세스 토큰이 살아있습니다”;
Debug.Log(“액세스 토큰이 살아있습니다”);
bro = Backend.BMember.LoginWithTheBackendToken();
if (bro.IsSuccess())
{
NotificationPanel.Instance.Notify();
NotificationPanel.Instance.text.text = “자동 로그인에 성공했습니다”;
Debug.Log(“자동 로그인에 성공했습니다”);
Backend.BMember.RefreshTheBackendToken();
Debug.Log(“토큰 재발급”);
}
else
{
NotificationPanel.Instance.Notify();
NotificationPanel.Instance.text.text = “자동 로그인 실패2”;
Debug.LogError(“자동 로그인 실패2”);
AppleLoginManager.Instance. SignInWithApple();
}
}
}
생각했던거는 애플로그인을 한 상태에서 게임을 종료했다가 다시 들어와도
토큰 로그인으로 자동으로 로그인 되는거 생각했는데요.
막상 애플로그인 뒤에 게임 종료하고 다시 들어와서
토큰 로그인을 하려고 하면
Exception: The client not login yet. Please login first (0) 가 뜹니다.