我正在将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)
}
}
答案 0 :(得分:0)
当您打算使用Google登录时,您正在将GithubAuthProvider
与signInWithCredential
一起使用,这可能是问题所在。