首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >使用asp.net身份更改当前用户的UserName后如何更改身份验证cookies

使用asp.net身份更改当前用户的UserName后如何更改身份验证cookies
EN

Stack Overflow用户
提问于 2013-10-14 02:57:27
回答 1查看 15.8K关注 0票数 18

使用实体框架6.0.0-rc1的asp.net标识版本1.0.0-rc1 (与Visual Studio2013 RC一起提供的版本)。

试图让用户有机会更改他们的UserName。在AuthenticationIdentityManager下似乎没有这样的功能,所以我使用EF (获取当前用户的用户对象,更改UserName并保存更改)来更改数据。

问题是身份验证cookie保持不变,下一个请求失败,因为没有这样的用户。

在过去的表单身份验证中,我使用以下代码来解决这个问题。

代码语言:javascript
复制
var formsAuthCookie = Request.Cookies[FormsAuthentication.FormsCookieName];
var isPersistent = FormsAuthentication.Decrypt(formsAuthCookie.Value).IsPersistent;
FormsAuthentication.SetAuthCookie(newUserName, isPersistent);

我应该如何处理asp.net标识以更新cookies?

更新

下面的代码似乎更新了身份验证cookie。

代码语言:javascript
复制
var identity = new ClaimsIdentity(User.Identity);
identity.RemoveClaim(identity.FindFirst(identity.NameClaimType));
identity.AddClaim(new Claim(identity.NameClaimType, newUserName));
AuthenticationManager.AuthenticationResponseGrant = new AuthenticationResponseGrant
    (new ClaimsPrincipal(identity), new AuthenticationProperties {IsPersistent = false});

剩下的问题是:如何从当前身份验证IsPersistent中提取cookie值?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-10-14 14:56:56

How do you login/authenticate a user with Asp.Net MVC5 RTM bits using AspNet.Identity?

代码语言:javascript
复制
private async Task SignInAsync(ApplicationUser user, bool isPersistent)
{
    AuthenticationManager.SignOut(DefaultAuthenticationTypes.ExternalCookie);
    var identity = await UserManager.CreateIdentityAsync(user, DefaultAuthenticationTypes.ApplicationCookie);
    AuthenticationManager.SignIn(new AuthenticationProperties() { IsPersistent = isPersistent }, identity);
}

对于RC1,您可以使用类似的代码。

代码语言:javascript
复制
AuthenticationManager.SignOut();
IdentityManager.Authentication.SignIn(AuthenticationManager, user.UserId, isPersistent:false);

对于持久值,您需要访问身份验证cookie并检索状态。

更新:

使用适当的AuthenticationType来代替“持有者”。还要确保在发布登录票证的同时,设置AuthenticationProperties.IsPersistent。

代码语言:javascript
复制
bool isPersistent=false;
var authContext = await Authentication.AuthenticateAsync("Bearer");
if (authContext != null)
{
   var aProperties = authContext.Properties;
   isPersistent = aProperties.IsPersistent;
}
票数 16
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/19349011

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档