如何集成Google注销?
此功能可正常使用Google帐户登录。
signInGoogle = async () => {
try {
const result = await Expo.Google.logInAsync({
androidClientId:
"################",
webClientId:
"##################",
androidStandaloneAppClientId:
"############",
//iosClientId: YOUR_CLIENT_ID_HERE, <-- if you use iOS
scopes: ["profile", "email"]
});
if (result.type === "success") {
this.setState({
signedIn: true
});
} else {
console.log("cancelled");
}
} catch (e) {
console.log("error", e);
}
要登录,我正在使用博览会的Expo.Google.logInAsync
方法,如何从Google帐户注销并切换到另一个帐户?
在expo中有一个登录功能,但是如果我要注销它不起作用,我会在状态下播放,但是当我再次尝试登录时,并不需要使用帐户登录,而只是使用该帐户登录同一帐户。
如果有人知道,您可以帮我解决这个问题。