如果我将身份验证配置为
.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
一切正常,但如果我进行配置
.AddAuthentication(options => {
options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
})
即使成功登录后,用户也会被重定向到登录页面。 我希望两个配置都具有相同的行为。有什么想法吗?