微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

得到错误:抛出了“Google.GoogleSignIn+SignInException”类型的 DeveloperError 异常 --- unity、firebase、google 登录?

如何解决得到错误:抛出了“Google.GoogleSignIn+SignInException”类型的 DeveloperError 异常 --- unity、firebase、google 登录?

我正在统一开发一个应用程序。我使用 firebase google 登录方法。基本上 google 登录正在工作,并且该用户登录后被列在 google firebase 用户日志中。问题是,它抛出了一个错误。因此无法从 Firestore 获取数据。即使没有 firestore 代码,应用程序也会显示错误

出现错误:DeveloperError 类型的异常 'Google.GoogleSignIn+SignInException' 被抛出

可能是什么问题。

下面是我的代码

 public class GoogleSignInDemo : MonoBehavIoUr
    {
        public Text infoText;
        private string webClientId = "xxxxxxaaaaaaabbbb.apps.googleusercontent.com";
    
        private FirebaseAuth auth;
        private GoogleSignInConfiguration configuration;
    
        private void Awake()
        {
            configuration = new GoogleSignInConfiguration { WebClientId = webClientId,Requestemail = true,RequestIdToken = true };
            CheckFirebaseDependencies();
        }
    
        private void CheckFirebaseDependencies()
        {
            FirebaseApp.CheckAndFixDependenciesAsync().ContinueWith(task =>
            {
                if (task.IsCompleted)
                {
                    if (task.Result == DependencyStatus.Available)
                        auth = FirebaseAuth.DefaultInstance;
                    else
                        AddToinformation("Could not resolve all Firebase dependencies: " + task.Result.ToString());
                }
                else
                {
                    AddToinformation("Dependency check was not completed. Error : " + task.Exception.Message);
                }
            });
        }
    
        public void SignInWithGoogle() { OnSignIn(); }
        public void SignOutFromGoogle() { OnSignOut(); }
    
        private void OnSignIn()
        {
            GoogleSignIn.Configuration = configuration;
            GoogleSignIn.Configuration.UseGameSignIn = false;
            GoogleSignIn.Configuration.RequestIdToken = true;
            AddToinformation("Calling SignIn");
    
            GoogleSignIn.DefaultInstance.SignIn().ContinueWith(OnAuthenticationFinished);
        }
    
        private void OnSignOut()
        {
            AddToinformation("Calling SignOut");
            GoogleSignIn.DefaultInstance.SignOut();
        }
    
        public void Ondisconnect()
        {
            AddToinformation("Calling disconnect");
            GoogleSignIn.DefaultInstance.disconnect();
        }
    
        internal void OnAuthenticationFinished(Task<GoogleSignInUser> task)
        {
            if (task.IsFaulted)
            {
                using (IEnumerator<Exception> enumerator = task.Exception.InnerExceptions.GetEnumerator())
                {
                    if (enumerator.MoveNext())
                    {
                        GoogleSignIn.SignInException error = (GoogleSignIn.SignInException)enumerator.Current;
                        AddToinformation("Got Error: " + error.Status + " " + error.Message);
                    }
                    else
                    {
                        AddToinformation("Got Unexpected Exception?!?" + task.Exception);
                    }
                }
            }
            else if (task.IsCanceled)
            {
                AddToinformation("Canceled");
            }
            else
            {
                AddToinformation("Welcome: " + task.Result.displayName + "!");
                AddToinformation("Email = " + task.Result.Email);
                AddToinformation("Google ID Token = " + task.Result.IdToken);
                AddToinformation("Email = " + task.Result.Email);
                SignInWithGoogleOnFirebase(task.Result.IdToken);
    
                SceneManager.LoadScene(1); //Savad - Load Welcome screen when Google Login
            }
        }
    
        private void SignInWithGoogleOnFirebase(string idToken)
        {
            Credential credential = GoogleAuthProvider.GetCredential(idToken,null);
    
            auth.SignInWithCredentialAsync(credential).ContinueWith(task =>
            {
                AggregateException ex = task.Exception;
//==============Here is the problem
                if (ex != null)
                {
                    if (ex.InnerExceptions[0] is FirebaseException inner && (inner.ErrorCode != 0))
                        AddToinformation("\nError code = " + inner.ErrorCode + " Message = " + inner.Message);
//=======================================
                }
                else
                {
                    AddToinformation("Sign In Successful.");
                }
            });
        }
    
        public void OnSignInSilently()
        {
            GoogleSignIn.Configuration = configuration;
            GoogleSignIn.Configuration.UseGameSignIn = false;
            GoogleSignIn.Configuration.RequestIdToken = true;
            AddToinformation("Calling SignIn Silently");
    
            GoogleSignIn.DefaultInstance.SignInSilently().ContinueWith(OnAuthenticationFinished);
        }
    
        public void OnGamesSignIn()
        {
            GoogleSignIn.Configuration = configuration;
            GoogleSignIn.Configuration.UseGameSignIn = true;
            GoogleSignIn.Configuration.RequestIdToken = false;
    
            AddToinformation("Calling Games SignIn");
    
            GoogleSignIn.DefaultInstance.SignIn().ContinueWith(OnAuthenticationFinished);
        }
    
        private void AddToinformation(string str) { infoText.text += "\n" + str; }
    
        public void SwitchToPhonesignup()
        {
            SceneManager.LoadScene(2);
        }
    
        public void SwitchToOtp()
        {
            SceneManager.LoadScene(2);
        }
        public void SwitchToEmailSignUP()
        {
            SceneManager.LoadScene(2);
        }
    }

   

解决方法

以下是使用 Firebase 身份验证和 GoogleSignIn 库的 Google SignIn 代码的工作示例:

    private void SignInWithGoogle(bool linkWithCurrentAnonUser)
       {
          GoogleSignIn.Configuration = new GoogleSignInConfiguration
          {
             RequestIdToken = true,// Copy this value from the google-service.json file.
             // oauth_client with type == 3
             WebClientId = "[YOUR API CLIENT ID HERE].apps.googleusercontent.com"
          };
    
          Task<GoogleSignInUser> signIn = GoogleSignIn.DefaultInstance.SignIn();
    
          TaskCompletionSource<FirebaseUser> signInCompleted = new TaskCompletionSource<FirebaseUser>();
          signIn.ContinueWith(task =>
          {
             if (task.IsCanceled)
             {
                signInCompleted.SetCanceled();
             }
             else if (task.IsFaulted)
             {
                signInCompleted.SetException(task.Exception);
             }
             else
             {
                Credential credential = Firebase.Auth.GoogleAuthProvider.GetCredential(((Task<GoogleSignInUser>)task).Result.IdToken,null);
                if (linkWithCurrentAnonUser)
                {
                   mAuth.CurrentUser.LinkWithCredentialAsync(credential).ContinueWith(HandleLoginResult);
                }
                else
                {
                   SignInWithCredential(credential);
                }
             }
          });
       }

该参数用于登录,目的是将新的 google 帐户与当前登录的匿名用户相关联。如果需要,您可以忽略该方法的这些部分。请注意,所有这些都是在正确初始化 Firebase 身份验证库之后调用的。

来源:https://github.com/googlesamples/google-signin-unity

自述页面包含为您的环境获取此设置的分步说明。遵循这些并使用上面的代码后,您应该可以在 android 和 iOS 上运行。

这是上面代码中使用的 SignInWithCredential 方法:

    private void SignInWithCredential(Credential credential)
       {
          if (mAuth != null)
          {
             mAuth.SignInWithCredentialAsync(credential).ContinueWith(HandleLoginResult);
          }
       }

`mAuth` is a reference to FirebaseAuth:

    mAuth = Firebase.Auth.FirebaseAuth.DefaultInstance;

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。