![]() |
VOOZH | about |
dotnet add package DarkLoop.Azure.Functions.Authorization.Isolated --version 4.2.1
NuGet\Install-Package DarkLoop.Azure.Functions.Authorization.Isolated -Version 4.2.1
<PackageReference Include="DarkLoop.Azure.Functions.Authorization.Isolated" Version="4.2.1" />
<PackageVersion Include="DarkLoop.Azure.Functions.Authorization.Isolated" Version="4.2.1" />Directory.Packages.props
<PackageReference Include="DarkLoop.Azure.Functions.Authorization.Isolated" />Project file
paket add DarkLoop.Azure.Functions.Authorization.Isolated --version 4.2.1
#r "nuget: DarkLoop.Azure.Functions.Authorization.Isolated, 4.2.1"
#:package DarkLoop.Azure.Functions.Authorization.Isolated@4.2.1
#addin nuget:?package=DarkLoop.Azure.Functions.Authorization.Isolated&version=4.2.1Install as a Cake Addin
#tool nuget:?package=DarkLoop.Azure.Functions.Authorization.Isolated&version=4.2.1Install as a Cake Tool
Bringing AuthorizeAttribute Behavior to Azure Functions v4 in Isolated mode.
It hooks into .NET Core dependency injection container to enable authentication and authorization in the same way ASP.NET Core does.
Breaking for current package consumers
Starting with version 4.1.0, due to security changes made on the Functions runtime, the Bearer scheme is no longer supported for your app functions.
Use
AddJwtFunctionsBearer(Action<JwtBearerOptions>)instead ofAddJwtBearer(Action<JwtBearerOptions>)when setting up authentication. UsingAddJwtBearerwill generate a compilation error when used againstFunctionsAuthenticationBuilder. We are introducingJwtFunctionsBearerDefaultsto refer to the suggested new custom scheme name.No changes should be required if already using a custom scheme name.
dotnet add package DarkLoop.Azure.Functions.Authorization.Isolated
The goal is to utilize the same authentication framework provided for ASP.NET Core
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.Azure.Functions.Worker;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
var host = new HostBuilder()
.ConfigureFunctionsWebAppliction(builder =>
{
// Explicitly adding the extension middleware because
// registering middleware when extension is loaded does not
// place the middleware in the pipeline where required request
// information is available.
builder.UseFunctionsAuthorization();
})
.ConfigureServices(services =>
{
services
.AddFunctionsAuthentication(JwtBearerDefaults.AuthenticationScheme)
// This is important as Bearer scheme is used by the runtime
// and no longer supported by this framework.
.AddJwtFunctionsBearer(options =>
{
options.Authority = "https://login.microsoftonline.com/your-tenant-id";
options.Audience = "your-app-id-uri";
...
});
services.AddFunctionsAuthorization(options =>
{
options.AddPolicy("OnlyAdmins", policy => policy.RequireRole("Admin"));
});
// Add other services
})
.Build();
host.Run();
Starting with version 4.1.0, the default Bearer scheme is not supported by this framework. You can use a custom scheme or make use of
AddJwtFunctionsBearer(Action<JwtBearerOptions>)as shown above. This one adds the"FunctionsBearer"scheme. Clients still submit token for Authorization header in the format:Bearer <token>.
Notice the call to UseFunctionsAuthorization in the ConfigureFunctionsWebAppliction method.
This is required to ensure that the middleware is placed in the pipeline where required function information is available.`
Mind that the startup if coding in F# will be somewhat different. Please do check the
And now lets use FunctionAuthorizeAttribute the same way we use AuthorizeAttribute in our ASP.NET Core applications.
[FunctionAuthorize]
public class Functions
{
[FunctionName("get-record")]
public async Task<IActionResult> GetRecord(
[HttpTrigger("get")] HttpRequest req, ILogger log)
{
var user = req.HttpContext.User;
var record = GetUserData(user.Identity.Name);
return new OkObjectResult(record);
}
[Authorize(Policy = "OnlyAdmins")]
[FunctionName("get-all-records")]
public async Task<IActionResult> GetAllRecords(
[HttpTrigger("get")] HttpRequest req, ILogger log)
{
var records = GetAllData();
return new OkObjectResult(records);
}
}
Something really nice to notice is that for Functions in Isolated mode, the HttpTriggerAttribute default AuthenticationLevel is Anonymous, playing really well with the attribute.<br/>
Also notice how the second function uses the AuthorizeAttribute attribute to apply a policy to the function. FunctionAuthorizeAttribute was left as part of the framework only to make it easier to migrate from In-Proc to Isolated, but they can be used interchangeably.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 4 NuGet packages that depend on DarkLoop.Azure.Functions.Authorization.Isolated:
| Package | Downloads |
|---|---|
|
Energinet.DataHub.Core.App.FunctionApp
[Release Notes](https://github.com/Energinet-DataHub/geh-core/blob/master/source/App/documents/release-notes/release-notes.md) [Documentation](https://github.com/Energinet-DataHub/geh-core/blob/master/source/App/documents/documentation.md) |
|
|
IglooSoftware.Sdk.Authorization
Facilities for authorizing calls to Igloo APIs. |
|
|
Snokam.Middleware
Package Description |
|
|
Snokam.Api
Package Description |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.2.1 | 123,423 | 10/23/2025 |
| 4.2.1-preview-251022-1 | 226 | 10/22/2025 |
| 4.2.0 | 212,719 | 1/28/2025 |
| 4.2.0-preview-250128-7 | 223 | 1/28/2025 |
| 4.2.0-preview-250128-5 | 211 | 1/28/2025 |
| 4.2.0-preview-250128-3 | 215 | 1/28/2025 |
| 4.1.3 | 45,304 | 11/22/2024 |
| 4.1.3-preview-241121-5 | 227 | 11/21/2024 |
| 4.1.2 | 72,781 | 8/20/2024 |
| 4.1.2-preview-240819-12 | 6,374 | 8/19/2024 |
| 4.1.2-preview-240818-2 | 449 | 8/18/2024 |
| 4.1.1 | 887 | 8/17/2024 |
| 4.1.1-preview-240816-18 | 241 | 8/16/2024 |
| 4.1.1-preview-240719-1 | 261 | 7/19/2024 |
| 4.1.0 | 24,642 | 5/27/2024 |
| 4.1.0-preview-240522-2 | 289 | 5/22/2024 |
| 4.1.0-preview-240522-1 | 219 | 5/22/2024 |
| 4.1.0-preview-240521-1 | 240 | 5/21/2024 |
| 4.0.1 | 13,442 | 3/19/2024 |
| 4.0.0 | 812 | 3/19/2024 |