ASP.NET web api 2重置/更改密码时如何重置令牌认证

时间:2017-06-24 09:33:54

标签: asp.net asp.net-web-api asp.net-web-api2 asp.net-identity

当用户更改密码时,他们会从应用中退出。但是,如果他们同时登录到另一个应用程序,他们仍然会登录到另一个应用程序。

我想在用户更改密码时从登录的所有应用中注销用户。

在浏览器中,我们通过此代码检查用户cookie

Provider = new CookieAuthenticationProvider
{
    // Enables the application to validate the security stamp when the user logs in.
    // This is a security feature which is used when you change a password or add an external login to your account.  
    OnValidateIdentity = SecurityStampValidator.OnValidateIdentity<ApplicationUserManager, ApplicationUser>(
        validateInterval: TimeSpan.FromSeconds(1),
        regenerateIdentity: (manager, user) => user.GenerateUserIdentityAsync(manager))
}

web api是否有相同的代码?

1 个答案:

答案 0 :(得分:0)

我认为此链接可以帮助您,

  

How to invalidate OAuth token when password is changed?