blazor服务器模式应用程序中的Windows身份验证

时间:2019-09-25 09:05:40

标签: authentication asp.net-core blazor

是否可以在blazor应用程序(服务器模式)中将Windows身份验证与Kestrel Web服务器一起使用?

我已经尝试从这里Series.map

services.AddAuthentication(NegotiateDefaults.AuthenticationScheme).AddNegotiate();

app.UseAuthentication();

但是当我尝试使用代码获取User.Identity时:

var authState = await AuthenticationStateProvider.GetAuthenticationStateAsync();

User.Identity.IsAuthenticated始终等于false

0 个答案:

没有答案