OWIN身份验证,使当前令牌失效并删除co​​okie

Raf*_*aeu 5 c# authentication owin

我有一个OWIN中间件用于身份验证.我们有两种类型的身份验证.第一种类型是使用以下配置的承载令牌

var OAuthOptions =  new OAuthAuthorizationServerOptions
    {
        AuthenticationType = DefaultAuthenticationTypes.ExternalBearer,
        TokenEndpointPath = new PathString("/Token"),
        Provider = new ApplicationOAuthProvider(PublicClientId),
        AccessTokenExpireTimeSpan = TimeSpan.FromDays(14),
        AllowInsecureHttp = true,
        AccessTokenFormat = new SecureTokenFormatter(GetMachineKey())
    };
Run Code Online (Sandbox Code Playgroud)

第二种类型使用身份验证cookie进行外部登录

app.UseCookieAuthentication(new CookieAuthenticationOptions
{
    AuthenticationType = DefaultAuthenticationTypes.ExternalCookie,
    AuthenticationMode = Microsoft.Owin.Security.AuthenticationMode.Passive,
    CookieHttpOnly = true,
    CookieSecure = CookieSecureOption.SameAsRequest,
    CookieName = ".AspNet." + DefaultAuthenticationTypes.ExternalCookie,
    ExpireTimeSpan = TimeSpan.FromMinutes(5),
    TicketDataFormat = new SecureTokenFormatter(GetMachineKey())
});
Run Code Online (Sandbox Code Playgroud)

当用户注销时,我们实际发出了两个Logout

Request.GetOwinContext().Authentication.SignOut(DefaultAuthenticationTypes.ExternalCookie);
Run Code Online (Sandbox Code Playgroud)

Request.GetOwinContext().Authentication.SignOut(DefaultAuthenticationTypes.ExternalBearer);
Run Code Online (Sandbox Code Playgroud)

对于第一个,我希望看到从浏览器中删除.AspNet.ExternalCookie Cookie,但事实并非如此.对于第二个,我希望我的令牌失效,而User.Current.Identity = null,这不是.

那么我怎么能1)以物理方式注销当前会话的当前身份?2)从浏览器中删除外部Cookie?

Str*_*los 0

我遇到了与您相同的问题,经过 3 天的搜索,我找到了 asnwer(有点......)。

在注销中尝试其中一行(且仅一行)这些代码行。(它们都对我有用,但是我正在使用第一个,但是示例越多越好,对吗?)

Request.GetOwinContext().Authentication.SignOut();

Request.GetOwinContext().Authentication.SignOut(Microsoft.AspNet.Identity.DefaultAuthenticationTypes.ApplicationCookie);

HttpContext.Current.GetOwinContext().Authentication.SignOut(Microsoft.AspNet.Identity.DefaultAuthenticationTypes.ApplicationCookie);
Run Code Online (Sandbox Code Playgroud)

本文很好地描述了这个问题,但它没有提供有效的修复(至少对我来说没有) http://coding.abel.nu/2014/11/捕捉-the-system-webowin-cookie -怪物/