gpt4 book ai didi

c# - 如何添加 JwtBearer 和 AddMicrosoftIdentityWebAppAuthentication

转载 作者:行者123 更新时间:2023-12-05 04:55:24 25 4
gpt4 key购买 nike

我不确定我是否完全理解 Microsoft.Identity.Web 的变化,但我正在关注一篇文章(given by Microsoft here) 它描述了如何在启动时进行更改

 services.AddAuthentication(AzureADDefaults.AuthenticationScheme)
.AddAzureAD(options => Configuration.Bind("AzureAd", options));

services.AddMicrosoftIdentityWebAppAuthentication(Configuration);

虽然这看起来不错而且简单,但我还有一些工作要做,因为我现有的代码中有以下代码片段

services.AddAuthentication(AzureADDefaults.AuthenticationScheme)
.AddAzureAD(options => this.configuration.Bind("AzureAd", options))
.AddJwtBearer(options =>
{
//this code used to validate signing keys
string stsDiscoveryEndpoint = "https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration";
IConfigurationManager<OpenIdConnectConfiguration> configurationManager = new ConfigurationManager<OpenIdConnectConfiguration>(stsDiscoveryEndpoint, new OpenIdConnectConfigurationRetriever());
OpenIdConnectConfiguration openIdConfig = configurationManager.GetConfigurationAsync(CancellationToken.None).GetAwaiter().GetResult();
var tenantId = this.configuration["TenantId"];
var validIssuer = $"https://sts.windows.net/{tenantId}/";

options.TokenValidationParameters = new TokenValidationParameters()
{
ValidIssuer = validIssuer,
ValidAudience = this.configuration["ClientId"],
IssuerSigningKeys = openIdConfig.SigningKeys,
};
});

为了给你一点背景信息,我们有两个版本的这个应用程序

  1. 用户登录并做一些工作(这里用户将获得 Microsoft 登录对话框以使用他/她的凭据登录)
  2. Microsoft Azure 使用一些 token 调用我们的端点,我们需要验证该 token 。

您在上面看到的 JWTvaliation 部分是针对第二项的,一旦我们收到 token ,我们就会在没有登录和 UI 工作流的情况下验证该 token 。

问题:上面的代码工作正常。这里唯一的问题是如果我们喜欢使用 Microsoft.Identity 我们应该如何使用第二项 (JWT) 因为 services.AddAuthentication().AddAzureAD 返回 IAuthenticationBuilder 我们进一步使用它来添加 AddJwtBearer,而 services.AddMicrosoftIdentityWebAppAuthentication 不返回 IAuthenticationBuilder

最佳答案

AddMicrosoftIdentityWebAppAuthentication 实际上是 just a fancy way执行以下操作:

services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)
.AddMicrosoftIdentityWebApp(…)

因此它将默认方案配置为 OIDC 方案并运行 AddMicrosoftIdentityWebApp 以配置最终执行的操作。

现在,AddAuthentication实际上可以在服务集合上多次调用。您只需要注意不要错误地重新配置即可。无参数函数不会这样做,因此这是访问 IAuthenticationBuilder 以进一步配置身份验证的好方法。

这意味着您可以像这样更改代码:

// configure Microsoft Identity Web first
// this also sets the default authentication to OIDC
services.AddMicrosoftIdentityWebAppAuthentication(Configuration);

// retrieve an authentication builder without changing the default
services.AddAuthentication()
// add JWT bearer now
.AddJwtBearer(options =>
{
// …
});

关于c# - 如何添加 JwtBearer 和 AddMicrosoftIdentityWebAppAuthentication,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65404546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com