gpt4 book ai didi

c# - Azure 移动服务 - Facebook 注销

转载 作者:行者123 更新时间:2023-11-30 20:38:42 26 4
gpt4 key购买 nike

我使用 Azure 移动服务 Facebook 身份验证创建了 .NET 应用程序。我使用的凭据:

// Login with the identity provider.
user = await App.MobileService
.LoginAsync(provider);

// Create and store the user credentials.
credential = new PasswordCredential(provider,
user.UserId, user.MobileServiceAuthenticationToken);
vault.Add(credential);

如何注销?

最佳答案

使用MobileServiceClient.Logout .

此方法会在调用 MobileServiceClient.Logout 方法将用户从 Azure 移动服务实例中注销之前清除身份提供程序设置的所有 Cookie。

以下代码示例展示了 iOS 平台的 Logout 方法:

public void Logout()
{
foreach (var cookie in NSHttpCookieStorage.SharedStorage.Cookies) {
NSHttpCookieStorage.SharedStorage.DeleteCookie (cookie);
}

App.Client.Logout ();
}

Android平台代码:

public void Logout ()
{
CookieManager.Instance.RemoveAllCookie ();
App.Client.Logout ();
}

Windows Phone 8.1 平台的代码:

public void Logout()
{
...
AzureTodo.App.Client.Logout();
}

关于c# - Azure 移动服务 - Facebook 注销,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34907100/

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