当用户更改密码时,他们将从应用程序中登录。但是,如果它们同时登录了另一个应用程序,请在另一个应用程序上登录。
我想从更改密码时登录的所有应用程序中注销用户。
在浏览器中,我们通过此代码检查用户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相同的代码?
我认为此链接会帮助您,
更改密码时如何使Oauth令牌无效?