401时,asp.net核心cookie不在浏览器中显示

时间:2018-08-29 08:22:28

标签: asp.net-web-api cookies

我正在使用中间件来设置Cookie,例如

        app.Use(async (context, next) =>
        {
            if (context.Request.Cookies["MyCookie"] == null)
            {
                context.Response.Cookies.Append("MyCookie", "1");
            }

            await next();
        });

当我导航到未经授权的路径时,无法在chome浏览器中看到cookie。但是,我可以在Postman中看到cookie。知道为什么浏览器不在2XX时为什么不显示cookie吗?

0 个答案:

没有答案