【问题标题】:Error occuriring with call to user authenticated http trigger调用经过用户身份验证的 http 触发器时发生错误
【发布时间】:2021-09-15 16:08:13
【问题描述】:

我正在使用 Azure Functions v3

我正在尝试使用身份验证,并且我已将我的功能设置为 HttpTriggers 的用户级安全

下面的逻辑是在我的函数启动时调用的

protected override void SetupAuthentication(
    IServiceCollection services, IConfiguration configuration)
{
    var tokenOptions = configuration.GetSection("JwtIssuerOptions")
                    .Get<TokenConfiguration>();
                
    var tokenValidationParameters = new TokenValidationParameters
        {
            // The signing key must match!
            ValidateIssuerSigningKey = true,
            IssuerSigningKey = tokenOptions.SecurityKey,
            // Validate the JWT Issuer (iss) claim
            ValidateIssuer = true,
            ValidIssuer = tokenOptions.Issuer,
            // Validate the JWT Audience (aud) claim
            ValidateAudience = true,
            ValidAudience = tokenOptions.Audience,
            // Validate the token expiry
            ValidateLifetime = true,
            // If you want to allow a certain amount of clock drift, set that here:
            ClockSkew = TimeSpan.Zero
        };
                
    services.Configure<IdentityConfiguration>(configuration.GetSection("IdentityConfiguration"));
    services.AddScoped<CustomJwtBearerEvents>();
    
    services
        .AddAuthentication(o =>
         {
              o.DefaultForbidScheme = JwtBearerDefaults.AuthenticationScheme;
              o.DefaultScheme = JwtBearerDefaults.AuthenticationScheme;
         })
        .AddJwtBearer(options =>
         {
              options.TokenValidationParameters = tokenValidationParameters;
              options.EventsType = typeof(CustomJwtBearerEvents);
         });
    
    }

当我在外部调用该函数时,我得到了错误

No authentication handler is registered for the scheme 'WebJobsAuthLevel'. 

注册的方案是:承载。您是否忘记调用 AddAuthentication().AddSomeAuthHandler?。

我错过了什么?

我需要模仿与网络应用相同的约定

[FunctionName("GetPayments")]
public async Task<List<PaymentDto>> GetPaymentsAsync(
    [HttpTrigger(AuthorizationLevel.User, "post", Route = "payments/get-payments")]
     HttpRequest req, 
     ILogger log)
{
    var data = await req.ReadAsStringAsync();
            
    //THis is where I have my logic which I only want to be able to access if the user has permissions
}

我看过下面的链接

https://damienbod.com/2020/09/24/securing-azure-functions-using-azure-ad-jwt-bearer-token-authentication-for-user-access-tokens/comment-page-1/?unapproved=127819&moderation-hash=3fdd04b596812933c4c32e8e8c8cf26a#comment-127819

它最初看起来是我需要的,但我不知道如何调整它以便它只使用身份令牌验证端

任何帮助将不胜感激

保罗

【问题讨论】:

  • 嘿,保罗,你运气好吗?我对 IS4 有同样的问题

标签: azure authentication jwt azure-functions


【解决方案1】:

看看:https://www.nuget.org/packages/DarkLoop.Azure.Functions.Authorize

最新版本可确保在您添加自己的身份验证或扩展内置身份验证之前,所有内置身份验证都已到位。顺便说一句,JTW Bearer 已经由 Functions 运行时配置。

你需要做的就是调用你的方法

services.AddFunctionsAuthentication();
services.AddFunctionsAuthorization();

然后在AddFunctionsAuthentication() 调用之后链接您需要配置的任何其他方案。生成的身份验证构建器旨在处理对 jwt 承载 (AddJwtBearer(options =&gt; ...) 的修改,并且不会中断告诉您 Bearer 方案已存在。

此包还使您能够使用FunctionsAuthorize 属性来处理您的HTTP 函数的细粒度授权要求。这是一篇包含详细信息的博客文章:https://blog.darkloop.com/post/functionauthorize-for-azure-functions-v3

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2014-12-25
    • 1970-01-01
    • 2018-04-26
    • 1970-01-01
    • 2020-11-04
    • 2020-11-15
    • 2016-01-17
    • 1970-01-01
    相关资源
    最近更新 更多