我通过 react native 开发应用程序并使用 rnfirebase 与 google firebase 身份验证连接。我有这样的谷歌按钮登录代码。
const _signIn = async () => {
setInitializing(true);
try {
await GoogleSignin.hasPlayServices();
const userInfo = await GoogleSignin.signIn();
const credential = auth.GoogleAuthProvider.credential(
userInfo.idToken,
userInfo.accessToken,
);
return auth()
.signInWithCredential(credential)
.then(response => {
const uid = response.user.uid;
const data = {
uid: uid,
email: userInfo.user.email,
fullname: userInfo.user.name,
bio: 'I am ok ..',
username: uid.substring(0, 8),
};
const usersRef = firestore().collection('users');
usersRef
.doc(uid)
.get()
.then(firestoreDocument => {
if (!firestoreDocument.exists) {
usersRef
.doc(data.uid)
.set(data)
.then(() => {
RNRestart.Restart();
})
.catch(error => {
setInitializing(false);
Alert.alert(JSON.stringify(error.message));
});
} else {
setInitializing(false);
}
})
.catch(error => {
Alert.alert(JSON.stringify(error.message));
console.log('Error getting document:', error);
});
});
} catch (error) {
if (error.code === statusCodes.SIGN_IN_CANCELLED) {
setInitializing(false);
Alert.alert('Sign in canceled');
} else if (error.code === statusCodes.IN_PROGRESS) {
setInitializing(false);
Alert.alert('Signin in progress');
} else if (error.code === statusCodes.PLAY_SERVICES_NOT_AVAILABLE) {
setInitializing(false);
Alert.alert('PLAY_SERVICES_NOT_AVAILABLE');
} else {
setInitializing(false);
Alert.alert(JSON.stringify(error.message));
}
} };
在 IOS 中,当我以新用户/注册用户身份登录时,应用程序始终显示谷歌登录页面。所以我可以选择我想要使用的帐户。像这样:
但在 Android 中,Google 登录页面仅在用户首次登录时显示。之后,如果用户退出应用程序,他想通过谷歌按钮再次登录,用户直接使用最后一个gmail转到主应用程序。所以在android中,如果我之前登录过,我不能切换/使用另一个帐户。
如何在每次用户通过 android 中的谷歌按钮登录时显示谷歌登录页面? 谢谢。
答案 0 :(得分:1)
在你的注销功能中,如果用户是通过谷歌登录的,你需要实现谷歌注销功能:
<块引用>GoogleSignin.signOut();
更好的方法是同时撤销访问权限,因此完整的注销功能可以是:
<块引用>等待 GoogleSignin.revokeAccess();
等待 GoogleSignin.signOut();