gpt4 book ai didi

java - 从我的应用程序中注销 Google

转载 作者:行者123 更新时间:2023-12-01 10:09:48 25 4
gpt4 key购买 nike

我制作了一个应用程序,要求用户先登录他们的谷歌帐户,然后才能访问我的应用程序。但是我不知道用户如何从我的应用程序中注销他们的 Google 帐户。谁能指出我正确的方向。谢谢

我的代码用于使用 Google 登录我的应用程序

public class Menu extends AppCompatActivity {
private MobileServiceClient mClient;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_menu);

try {
mClient = new MobileServiceClient(
"https://craigsapp.azure-mobile.net/",
"BTkcgnFQvevAdmmRteHCmhHPzdGydq84",
this
);
} catch (MalformedURLException e) {
e.printStackTrace();
}
authenticate();
}
private void authenticate() {
mClient.login(MobileServiceAuthenticationProvider.Google, new UserAuthenticationCallback() {

@Override
public void onCompleted(MobileServiceUser user, Exception exception, ServiceFilterResponse response) {
if (exception == null) {
Log.w("TodoActivity", "Logged in");

} else {
Log.e("TodoActivity", "They aren't logged in");
}
}
});
}
}

最佳答案

mClient 上应该有简单的 logout() 函数。我假设您使用 Azure Mobile services

因此,只需创建一个按钮,为其分配 onclick,它将调用此函数并且它应该可以工作。

关于java - 从我的应用程序中注销 Google,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36199597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com