本文介绍了如何在 ASP.NET Core 中返回 401 而不是 302?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试让 ASP.NET Core Identity 在用户未登录时返回 401.我已将 [Authorize] 属性添加到我的方法中,而不是返回 401它返回 302.我尝试了很多建议,但似乎没有任何效果,包括 services.Configureapp.UseCookieAuthenticationLoginPath 设置为nullPathString.Empty.

I'm trying to get ASP.NET Core Identity to return 401 when a user isn't logged in. I've added an [Authorize] attribute to my method and instead of returning 401 it returns 302. I've tried a ton of suggestions but nothing seems to work, including services.Configure and app.UseCookieAuthentication setting LoginPath to null or PathString.Empty.

推荐答案

ASP.NET Core 2.x 起:

services.ConfigureApplicationCookie(options =>
{
    options.Events.OnRedirectToLogin = context =>
    {
        context.Response.StatusCode = 401;
        return Task.CompletedTask;
    };
});

这篇关于如何在 ASP.NET Core 中返回 401 而不是 302?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 18:54