详解ASP.NET与ASP.NET Core用户验证Cookie并存解决方案

2025-05-29 0 66

在你将现有的用户登录(Sign In)站点从ASP.NET迁移至ASP.NET Core时,你将面临这样一个问题——如何让ASP.NETASP.NET Core用户验证Cookie并存,让ASP.NET应用与ASP.NET Core应用分别使用各自的Cookie?因为ASP.NET用的是FormsAuthentication,ASP.NET Core用的是claims-based authentication,而且它们的加密算法不一样。

我们采取的解决方法是在ASP.NET Core中登录成功后,分别生成2个Cookie,同时发送给客户端。

生成ASP.NET Core的基于claims-based authentication的验证Cookie比较简单,示例代码如下:

?

1

2

3

4

5

6

7

8

9
var claimsIdentity = new ClaimsIdentity(new Claim[] { new Claim(ClaimTypes.Name, loginName) }, "Basic");

var claimsPrincipal = new ClaimsPrincipal(claimsIdentity);

await context.Authentication.SignInAsync(_cookieAuthOptions.AuthenticationScheme,

claimsPrincipal,

new AuthenticationProperties

{

IsPersistent = isPersistent,

ExpiresUtc = DateTimeOffset.Now.Add(_cookieAuthOptions.ExpireTimeSpan)

});

生成ASP.NET的基于FormsAuthentication的验证Cookie稍微麻烦些。

首先要用ASP.NET创建一个Web API站点,基于FormsAuthentication生成Cookie,示例代码如下:

?

1

2

3

4

5
public IHttpActionResult GetAuthCookie(string loginName, bool isPersistent)

{

var cookie = FormsAuthentication.GetAuthCookie(loginName, isPersistent);

return Json(new { cookie.Name, cookie.Value, cookie.Expires });

}

然后在ASP.NET Core登录站点中写一个Web API客户端获取Cookie,示例代码如下:

?

1

2

3

4

5

6

7

8

9

10
public class UserServiceAgent

{

private static readonly HttpClient _httpClient = new HttpClient();

public static async Task<Cookie> GetAuthCookie(string loginName, bool isPersistent)

{

var response = await _httpClient.GetAsync(url);

response.EnsureSuccessStatusCode();

return await response.Content.ReadAsAsync<Cookie>();

}

}

最后在ASP.NET Core登录站点的登录成功后的处理代码中专门向客户端发送ASP.NET FormsAuthentication的Cookie,示例代码如下:

?

1

2

3

4

5

6

7

8

9

10

11
var cookie = await _userServiceAgent.GetAuthCookie(loginName, isPersistent);

var options = new CookieOptions()

{

Domain = _cookieAuthOptions.CookieDomain,

HttpOnly = true

};

if (cookie.Expires > DateTime.Now)

{

options.Expires = cookie.Expires;

}

context.Response.Cookies.Append(cookie.Name, cookie.Value, options);

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。

原文链接:http://www.cnblogs.com/dudu/p/6368240.html

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 详解ASP.NET与ASP.NET Core用户验证Cookie并存解决方案 https://www.kuaiidc.com/99260.html

相关文章

发表评论
暂无评论