在windows azure中处理联合身份验证中的注销

时间:2011-12-08 08:12:22

标签: c# facebook azure

我在windows azure中使用联合身份验证,将facebook作为身份提供者 我按照以下链接和其他一些帮助让我通过

http://debugmode.net/2011/11/13/step-by-step-guide-on-federated-authentication-in-windows-azure-web-role-using-windows-azure-app-fabric-access-control-service/

现在我不知道如何处理注销。任何人都可以帮忙!!

1 个答案:

答案 0 :(得分:3)

您可以使用类似

的内容
WSFederationAuthenticationModule fam = FederatedAuthentication.WSFederationAuthenticationModule;
 FormsAuthentication.SignOut();
 fam.SignOut(true); 
 // Write your code to Redirect to home page after Log Out

详细了解http://blogs.msdn.com/b/avkashchauhan/archive/2011/11/18/how-to-perform-clean-logout-from-your-application-which-use-azure-acs-amp-identity-providers.aspx

一切顺利。