토큰 로그인

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) 가 뜹니다.

안녕하세요 개발자님,
Backend.BMember.IsAccessTokenAlive 함수를 로그인 이후 호출이 가능함 함수입니다.
확인하여 구성해 주시면 감사하겠습니다.