Firebase Android:发生内部错误。 [ OPERATION_NOT_ALLOWED ]

Posted

技术标签:

【中文标题】Firebase Android:发生内部错误。 [ OPERATION_NOT_ALLOWED ]【英文标题】:Firebase Android: An internal error has occurred. [ OPERATION_NOT_ALLOWED ] 【发布时间】:2016-10-15 10:07:59 【问题描述】:

在我的应用程序中通过 Google 登录会出现此错误:

发生内部错误。 [ OPERATION_NOT_ALLOWED ]

我已在 Firebase 控制台中启用 Google。权限是正确的,我似乎找不到问题。我确定这与我的代码无关,但如果它确实告诉我。

SignInactivity:

@Override
public void onClick(View v) 
    switch (v.getId()) 
        case R.id.sign_in_button:
            signIn();
            break;
    


private void signIn() 
    Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(mGoogleApiClient);
    startActivityForResult(signInIntent, RC_SIGN_IN);


@Override
public void onConnectionFailed(@NonNull ConnectionResult connectionResult) 
    // An unresolvable error has occurred and Google APIs (including Sign-In) will not
    // be available.
    Log.d(TAG, "onConnectionFailed:" + connectionResult);
    Toast.makeText(this, "Google Play Services error.", Toast.LENGTH_SHORT).show();


@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) 
    super.onActivityResult(requestCode, resultCode, data);

    // Result returned from launching the Intent from GoogleSignInApi.getSignInIntent(...);
    if (requestCode == RC_SIGN_IN) 
        GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data);
        if (result.isSuccess()) 
            // Google Sign In was successful, authenticate with Firebase
            GoogleSignInAccount account = result.getSignInAccount();
            firebaseAuthWithGoogle(account);
         else 
            // Google Sign In failed
            Log.e(TAG, "Google Sign In failed.");
        
    


private void firebaseAuthWithGoogle(GoogleSignInAccount acct) 
    Log.d(TAG, "firebaseAuthWithGooogle:" + acct.getId());
    AuthCredential credential = GoogleAuthProvider.getCredential(acct.getIdToken(), null);
    mFirebaseAuth.signInWithCredential(credential).addOnCompleteListener(this, new OnCompleteListener<AuthResult>() 

       @Override
       public void onComplete(@NonNull Task<AuthResult> task) 
           Log.d(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());

           // If sign in fails, display a message to the user. If sign in succeeds
           // the auth state listener will be notified and logic to handle the
           // signed in user can be handled in the listener.
           if (!task.isSuccessful()) 
               Log.w(TAG, "signInWithCredential", task.getException());
               Toast.makeText(SignInActivity.this, "Authentication failed: " + task.getException(),
                       Toast.LENGTH_SHORT).show();
            else 
               startActivity(new Intent(SignInActivity.this, MainActivity.class));
               finish();
           
       
    );

【问题讨论】:

@jesses.co.tt 代码不需要,但我会添加我的 SignInActivity 这显然是 server 错误,仅此而已。 如果您“确定这与 [您的] 代码无关”,您希望我们如何帮助您?我们不能完全要求谷歌在他们的服务器上修复某些东西——我们所能做的就是处理你的代码。 @hichris123 不,伙计,这显然是 Firebase 的服务器错误,我需要启用或禁用某些东西。你有没有看错误信息? @hichris123 好吧,我还是给了你代码。 Firebase 最近让我很累 - 它有很多错误。坚决要重新考虑使用它 【参考方案1】:

我遇到了同样的问题。我在论坛帖子中得到了解决方案[Google Auth] com.google.firebase.FirebaseException: An internal error has occurred

当我没有在控制台 Firebase 中启用身份验证方法时,这发生在我身上。当我启用 Google 身份验证时,我遇到了同样的异常,只是没有 [OPERATION_NOT_ALLOWED]。

【讨论】:

虽然我仔细检查过,但这个解决方案对我来说是正确的。虽然我之前也试过。我猜你是从 google 群组复制并粘贴这条消息的,呵呵? 花了我一段时间才看到它:) 33 票赞成这么一个小问题。证明小答案可以产生巨大影响:)【参考方案2】:
    转到https://console.firebase.google.com/ 选择您的项目。 从菜单选项中单击身份验证 点击登录方式 点击 Google 并启用它。

比它工作正常:)

【讨论】:

为我工作.. 感谢您的回答 奥布里加多卡拉! como que esqueceram de colocar isso na documentação? Se colocaram, ficou muito oculto。谢啦!他们怎么忘了把这个放在文档中?如果他们这样做了,那就是非常隐蔽的。 目前已启用:/【参考方案3】:

在firebase console 上启用您将要使用或正在您的APP 中使用的SIGN-IN-METHOD 方法。

【讨论】:

【参考方案4】:

如果您使用电子邮件和密码注册,请按照以下步骤操作。

Go to https://console.firebase.google.com/
Select your project.
Click on Authentication from menu option(Right-side menu)
Click on SIGN-IN-METHOD
Click on Email/Password and enable it.
Click on SAVE.

【讨论】:

【参考方案5】:

我终于找到了适合我的解决方案。事实是,即使您成功设置了电子邮件+密码身份验证方法,您也需要创建一个移动应用程序(在我的情况下)并将其与您的项目相关联。之后,FireBase 将按预期工作。

【讨论】:

【参考方案6】:

转到 Google“https://console.developers.google.com/apis/library/”到您的项目并启用 Identity Toolkit API

【讨论】:

【参考方案7】:

运行项目时出现“发生内部错误”。请确保您的模拟器连接到互联网。就我而言,我的模拟器没有连接到互联网。按照这些步骤进行操作。(适用于 Windows PC)

    转到 WiFi 设置。 更改适配器选项。 右键单击 WiFi 并转到属性。 然后转到共享选项卡。 选中这两个组件并按 OK。

然后在模拟器中,关闭 WiFi 并再次打开。它对我有用。

【讨论】:

以上是关于Firebase Android:发生内部错误。 [ OPERATION_NOT_ALLOWED ]的主要内容,如果未能解决你的问题,请参考以下文章

com.google.firebase.FirebaseException:发生内部错误。 [ CONFIGURATION_NOT_FOUND ]

Firebase 云功能错误代码和错误消息在 Android 上始终为 Internal

错误:发生网络错误(如超时、连接中断或主机无法访问)

Android Firebase 奇怪的数据映射

无法加载 firebase Init 提供程序 - android studio

firebase 部署后“发生意外错误”