“错误:Firebase项目已禁用给定的登录提供程序。”但我已经启用了Firebase Google Auth

时间:2018-11-03 23:31:44

标签: android firebase ionic-framework firebase-authentication

Error

Firebase Console

我正在将ionic 3用于Android应用程序,但在Google加上Firebase登录时出错。集成的ionic和cordova g +插件,我的代码是

gPlusLogin(){
    this.nativeGLogin();
}

async nativeGLogin(){
    try {
       const gplusUser = await this.googlePlus.login({
         'webClientId': '235*********ie.apps.googleusercontent.com',
         'offline': true
       })

       return await this.afAuth.auth.signInWithCredential(firebase.auth.GithubAuthProvider.credential(gplusUser.idToken))
     } catch (error) {
         this.errorAlert(error)
     }
}

1 个答案:

答案 0 :(得分:0)

当您打算使用Google登录时,您正在将GithubAuthProvidersignInWithCredential一起使用,这可能是问题所在。