У меня есть приложение api/mvc для веб-приложений, и я настроил его на использование аутентификации cookie. Это отлично подходит для части приложения mvc. Веб-приложение api выполняет авторизацию, но вместо возврата 401 - Unauthorised
возвращает 302 - Found
и перенаправляет страницу входа. Я бы предпочел, чтобы он возвращал 401
. Я попытался подключиться к делегату CookieAuthenticationProvider.OnApplyRedirect
, но это, похоже, не вызвано. Что я пропустил? Моя текущая настройка ниже:
AntiForgeryConfig.UniqueClaimTypeIdentifier = Constants.ClaimTypes.Subject;
JwtSecurityTokenHandler.InboundClaimTypeMap = new Dictionary<string, string>();
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = "Cookies",
ExpireTimeSpan = TimeSpan.FromMinutes(20),
SlidingExpiration = true,
CookieHttpOnly = true,
CookieSecure = CookieSecureOption.Never, //local non ssl-dev only
Provider = new CookieAuthenticationProvider
{
OnApplyRedirect = ctx =>
{
if (!IsAjaxRequest(ctx.Request))
{
ctx.Response.Redirect(ctx.RedirectUri);
}
}
}
});
app.UseOpenIdConnectAuthentication(new OpenIdConnectAuthenticationOptions
{
Authority = IdentityConfig.Authority,
ClientId = IdentityConfig.SoftwareClientId,
Scope = "openid profile roles",
RedirectUri = IdentityConfig.RedirectUri,
ResponseType = "id_token",
SignInAsAuthenticationType = "Cookies"
});