是否可以在blazor应用程序(服务器模式)中将Windows身份验证与Kestrel Web服务器一起使用?
我已经尝试从这里Series.map
services.AddAuthentication(NegotiateDefaults.AuthenticationScheme).AddNegotiate();
app.UseAuthentication();
但是当我尝试使用代码获取User.Identity时:
var authState = await AuthenticationStateProvider.GetAuthenticationStateAsync();
User.Identity.IsAuthenticated
始终等于false