【发布时间】:2026-02-14 23:10:01
【问题描述】:
我目前正在使用身份框架为用户创建和存储 cookie。当用户尝试使用 cookie 登录时,我无法从 cookie 中获取用户声明。 cookie传入或者在httpcontext中找到有没有办法解密?
我已经尝试搜索httpcontext,我目前正在尝试找到一种方法来解密传入的cookie。
来自startup.cs
services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
.AddCookie(CookieAuthenticationDefaults.AuthenticationScheme, options =>
{
options.Cookie.Name = "MyCookie.Identity";
options.Cookie.Expiration = TimeSpan.FromDays(1);
});
我在哪里创建 cookie:
private async void AddUserCookie(AuthRequest authRequest)
{
var claims = new List<Claim>
{
new Claim(ClaimTypes.NameIdentifier, authRequest.UserName),
new Claim(ClaimTypes.Name, authRequest.UserName),
new Claim(ClaimTypes.Email, "TestClaim@Test.com")
};
var claimsIdentity = new ClaimsIdentity(claims, CookieAuthenticationDefaults.AuthenticationScheme);
var authProperties = new AuthenticationProperties
{
AllowRefresh = true,
ExpiresUtc = DateTimeOffset.UtcNow.AddDays(1),
IsPersistent = true,
IssuedUtc = DateTimeOffset.UtcNow
};
await this._httpContextAccessor.HttpContext.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme, new ClaimsPrincipal(claimsIdentity), authProperties).ConfigureAwait(false);
当我尝试从 http 上下文中检索 cookie 时,它说用户身份中没有声明。
【问题讨论】:
标签: c# cookies asp.net-identity