#asp.net-identity #cookie-authentication
#asp.net-идентификация #cookie-аутентификация
Вопрос:
Я пытаюсь войти в систему и HttpContext.User.Identitiy.IsAuthenticated
всегда выдает false.
Настройка службы
services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie(
options => {
options.LoginPath = "/";
options.AccessDeniedPath =new PathString("/AccessDenied");
options.Events.OnRedirectToLogin = (context) => {
context.Response.StatusCode = 401;
return Task.CompletedTask;
};
});
Метод
public async Task Invoke(HttpContext context) {
string token = context.Request.Query["token"];
var claims = new List<Claim> {
new Claim("token",token,APPLICATION_NAME)
};
var claimsIdentity = new ClaimsIdentity(claims,CookieAuthenticationDefaults.AuthenticationScheme);
var authProperties = new AuthenticationProperties {
AllowRefresh = true,
ExpiresUtc = DateTimeOffset.Now.AddSeconds(20),
IsPersistent = true
};
await context.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme, new ClaimsPrincipal(claimsIdentity),authProperties);
if (context.User.Identity.IsAuthenticated) { //always false
}
}
Ответ №1:
SignInAsync
не изменяет пользователя-участника текущего запроса. Проверьте то же свойство при следующем запросе, и оно должно быть true