Windows 10、.NET Core 3.0
我有一个空白的 mvc 项目(dotnet new mvc)。
主页索引:
public async Task<IActionResult> Index()
{
if(User.Identity.Name == null) {
var props = new AuthenticationProperties
{
IsPersistent = true,
ExpiresUtc = DateTime.UtcNow.AddMinutes(30)
};
var identity = new ClaimsIdentity(new[]
{
new Claim(ClaimTypes.Name, "sometestuser")
}, CookieAuthenticationDefaults.AuthenticationScheme);
await HttpContext.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme, new ClaimsPrincipal(identity), props);
}
return Content(User.Identity.Name);
}
Startup.cs(配置服务和配置)
services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie(CookieAuthenticationDefaults.AuthenticationScheme);
app.UseAuthentication();
刷新索引时,User.Identity.Name 始终为 null,并且永远不会设置 IsAuthentication。