可以使用 ChunkingCookieManager
详见:
https://docs.microsoft.com/zh-cn/dotnet/api/microsoft.aspnetcore.authentication.cookies.chunkingcookiemanager?view=aspnetcore-5.0
var cm = new ChunkingCookieManager(); cm.AppendResponseCookie(Context, "name", "scott", new Microsoft.AspNetCore.Http.CookieOptions { Expires = DateTimeOffset.Now.AddDays(1) });
无需额外配置,网上其他的都是什么Cookie代理神马玩意的。。。