使用 cookie 的不记名令牌身份验证

Bearer token authentication with cookie

我想在我的 asp.net mvc 应用程序中使用 Cookie 来存储不记名令牌,并且我希望根据客户端身份验证请求检查 Cookie(我不想添加 "Autentication" header 对于 front-end 上的每个请求)。 我该如何实施?谢谢。

您可以创建一个 cookie 提供程序来处理授权。检查这个 https://alexdunn.org/2017/03/31/asp-net-tips-consuming-bearer-tokens-as-a-cookie/