[Authorize(AuthenticationSchemes = CookieAuthenticationDefaults.AuthenticationScheme)]想请教一下如何在不加过滤器的情况下取cookie
1 回答
烙印99
TA贡献1829条经验 获得超13个赞
Startup.cs 中添加以下代码了吗?
services.AddAuthentication(options => { options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme; options.DefaultChallengeScheme = CookieAuthenticationDefaults.AuthenticationScheme; }) .AddCookie();
- 1 回答
- 0 关注
- 651 浏览
添加回答
举报
0/150
提交
取消