Workleap.Extensions.Http.Authentication.ClientCredentialsGrant 1.3.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Workleap.Extensions.Http.Authentication.ClientCredentialsGrant --version 1.3.0
NuGet\Install-Package Workleap.Extensions.Http.Authentication.ClientCredentialsGrant -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Workleap.Extensions.Http.Authentication.ClientCredentialsGrant" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Workleap.Extensions.Http.Authentication.ClientCredentialsGrant --version 1.3.0
#r "nuget: Workleap.Extensions.Http.Authentication.ClientCredentialsGrant, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Workleap.Extensions.Http.Authentication.ClientCredentialsGrant as a Cake Addin
#addin nuget:?package=Workleap.Extensions.Http.Authentication.ClientCredentialsGrant&version=1.3.0

// Install Workleap.Extensions.Http.Authentication.ClientCredentialsGrant as a Cake Tool
#tool nuget:?package=Workleap.Extensions.Http.Authentication.ClientCredentialsGrant&version=1.3.0

Workleap.Authentication.ClientCredentialsGrant

Description Download link Build status
Client-side library for any .NET application nuget build
Server-side library for ASP.NET Core web applications nuget build

This set of two libraries enables authenticated machine-to-machine HTTP communication between a .NET application and an ASP.NET Core web application. HTTP requests are authenticated with JSON web tokens (JWT) issued by an OAuth 2.0 authorization server using the client credentials grant flow.

                            ┌────────────────────────────────┐
                 ┌─────────►│ OAuth 2.0 authorization server │◄──────────┐
                 │          └────────────────────────────────┘           │
                 │                                                       │
                 │ get token with                       get signing keys │
                 │ client credentials grant flow                         │ validate
                 │                                                       │    token
               ┌─┴───────────┐                           ┌───────────────┴────────┐
               │ Client .NET ├──────────────────────────►│ Protected ASP.NET Core │
               │ application │  authenticated HTTP call  │         service        │
               └─────────────┘                           └────────────────────────┘

The client-side library includes:

The server-side library includes:

  • JWT authentication using the Microsoft.AspNetCore.Authentication.JwtBearer library.
  • Default authorization policies, but you can still create your own policies.
  • Non-intrusive: default policies must be explicitly used, and the default authentication scheme can be modified.
  • Support for ASP.NET Core 6.0 and later.

Requirements and Considerations:

  • Your OAuth 2.0 authorization server must expose its metadata at the URL <AUTHORITY>/.well-known/openid-configuration, as described in RFC 8414.
  • The client-side application uses data protection. It is important to note that your data protection configuration should support distributed workloads if you have multiple instances of a client application. Microsoft recommends using a combination of Azure Key Vault and Azure Storage to ensure that data encrypted by an instance of a client application can be read by another instance.

Getting started

Client-side library

Install the package Workleap.Extensions.Http.Authentication.ClientCredentialsGrant in your client-side application that needs to communicate with the protected ASP.NET Core server. Then, use one of the following methods to configure an authenticated HttpClient:

// Method 1: directly set the options values with C# code
services.AddHttpClient("MyClient").AddClientCredentialsHandler(options =>
{
    options.Authority = "<oauth2_authorization_server_base_url>";
    options.ClientId = "<oauth2_client_id>";
    options.ClientSecret = "<oauth2_client_secret>"; // use a secret store instead of hardcoding the value
    options.Scope = "<optional_requested_scope>"; // use "Scopes" for multiple values
});

// Method 2: bind the options to a configuration section
services.AddHttpClient("MyClient").AddClientCredentialsHandler(configuration.GetRequiredSection("MyConfigSection").Bind);

// Method 3: Lazily bind the options to a configuration section
services.AddHttpClient("MyClient").AddClientCredentialsHandler();
services.AddOptions<ClientCredentialsOptions>("MyClient").Bind(configuration.GetRequiredSection("MyConfigSection"));

// appsettings.json:
{
  "MyConfigSection": {
    "Authority": "<oauth2_authorization_server_base_url>",
    "ClientId": "<oauth2_client_id>",
    "ClientSecret": "<oauth2_client_secret>", // use a secret configuration provider instead of hardcoding the value
    "Scope": "<optional_requested_scope>", // use "Scopes" for multiple values,
    "EnforceHttps": "<boolean>", // use EnforceHttps to force all authenticated to be sent via https
  }
}

// You can also use the generic HttpClient registration with any of these methods:
services.AddHttpClient<MyClient>().AddClientCredentialsHandler( /* [...] */);

Note on EnforceHttps. It is possible to allow http authenticated requests, however, this should be limited to exceptional scenarios. It is strongly advised that you always use https for authenticated requests transmitted as the token sent will be in clear.

Then, instantiate the HttpClient later on using IHttpClientFactory or directly inject it in the constructor if you used the generic registration:

public class MyClient
{
    private readonly HttpClient _httpClient;

    public MyClient(IHttpClientFactory httpClientFactory)
    {
        this._httpClient = httpClientFactory.CreateClient("MyClient");
    }

    public async Task DoSomeAuthenticatedHttpCallAsync()
    {
        await this._httpClient.GetStringAsync("https://myservice");
    }
}

Starting from version 1.3.0, tokens are pre-fetched and cached at app startup. Subsequently, there is a periodic refresh of the token before its expiration and cache eviction. This behavior can be disabled by setting ClientCredentialsOptions.EnablePeriodicTokenBackgroundRefresh to false.

This client-side library is based on Duende.AccessTokenManagement, Copyright (c) Brock Allen & Dominick Baier, licensed under the Apache License, Version 2.0.

Server-side library

Install the package Workleap.AspNetCore.Authentication.ClientCredentialsGrant in your server-side ASP.NET Core application and register the authentication services:

// Registers Microsoft's JwtBearer handler with a default "ClientCredentials" authentication scheme.
// This authentication scheme can be changed using other methods overloads.
builder.Services.AddAuthentication().AddClientCredentials();

This will automatically bind the configuration section Authentication:Schemes:ClientCredentials (unless you've changed the authentication scheme). For instance, the example above works well with this appsettings.json:

{
  "Authentication": {
    "Schemes": {
      "ClientCredentials": {
        "Authority": "<oauth2_authorization_server_base_url>",
        "Audience": "<audience>",
        "MetadataAddress": "<oauth2_authorization_server_metadata_address>"
      }
    }
  }
}

Next, register the authorization services:

builder.Services.AddAuthorization(options =>
{
    // Change the scheme here if you registered a custom scheme in the authentication services.
    // You can also add requirements to your policy, such as '.RequireClaim("name", "value", ["values"])'.
    options.AddPolicy("my-policy", x => x.AddAuthenticationSchemes(ClientCredentialsDefaults.AuthenticationScheme).RequireAuthenticatedUser());
});

Finally, register the authentication and authorization middlewares in your ASP.NET Core app and decorate your endpoints with the AuthorizeAttribute:

var app = builder.Build();
// [...]

app.UseAuthentication();
app.UseAuthorization();

// Minimal APIs
app.MapGet("/hello-world", () => "Hello World!").RequireAuthorization("my-policy");

// Controller-style
[Authorize("my-policy")]
[HttpGet("hello-world")]
public IActionResult HelloWorld() => this.Ok("Hello world");

Building, releasing and versioning

The project can be built by running Build.ps1. It uses Microsoft.CodeAnalysis.PublicApiAnalyzers to help detect public API breaking changes. Use the built-in roslyn analyzer to ensure that public APIs are declared in PublicAPI.Shipped.txt, and obsolete public APIs in PublicAPI.Unshipped.txt.

A new preview NuGet package is automatically published on any new commit on the main branch. This means that by completing a pull request, you automatically get a new NuGet package.

When you are ready to officially release a stable NuGet package by following the SemVer guidelines, simply manually create a tag with the format x.y.z. This will automatically create and publish a NuGet package for this version.

License

Copyright © 2023, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.1-preview.5 35 6/25/2024
1.3.1-preview.4 43 6/20/2024
1.3.1-preview.3 34 6/14/2024
1.3.1-preview.2 44 6/10/2024
1.3.1-preview.1 41 6/10/2024
1.3.0 6,098 5/22/2024
1.2.4-preview.2 49 5/22/2024
1.2.4-preview.1 39 5/21/2024
1.2.3 2,490 5/14/2024
1.2.3-preview.8 40 5/14/2024
1.2.3-preview.7 48 5/10/2024
1.2.3-preview.6 38 5/3/2024
1.2.3-preview.5 62 4/16/2024
1.2.3-preview.4 48 4/15/2024
1.2.3-preview.3 56 4/12/2024
1.2.3-preview.2 50 4/3/2024
1.2.3-preview.1 47 4/3/2024
1.2.2 14,999 3/26/2024
1.2.1-preview.17 46 3/26/2024
1.2.1-preview.16 46 3/26/2024
1.2.1-preview.15 44 3/8/2024
1.2.1-preview.14 49 3/7/2024
1.2.1-preview.13 71 3/4/2024
1.2.1-preview.12 52 3/1/2024
1.2.1-preview.11 55 2/16/2024
1.2.1-preview.10 55 2/12/2024
1.2.1-preview.9 47 2/6/2024
1.2.1-preview.8 43 2/6/2024
1.2.1-preview.7 40 2/2/2024
1.2.1-preview.6 47 2/2/2024
1.2.1-preview.4 49 1/22/2024
1.2.1-preview.3 47 1/12/2024
1.2.1-preview.2 53 1/12/2024
1.2.1-preview.1 68 12/18/2023
1.2.0 52,595 12/14/2023
1.1.4-preview.1 72 12/14/2023
1.1.3 1,900 12/5/2023
1.1.3-preview.11 79 12/4/2023
1.1.3-preview.10 70 11/26/2023
1.1.3-preview.9 59 11/20/2023
1.1.3-preview.8 55 11/17/2023
1.1.3-preview.7 61 11/13/2023
1.1.3-preview.6 52 11/13/2023
1.1.3-preview.5 59 11/7/2023
1.1.3-preview.4 65 10/30/2023
1.1.3-preview.3 65 10/20/2023
1.1.3-preview.2 66 10/17/2023
1.1.3-preview.1 61 10/13/2023
1.1.2 50,228 10/4/2023
1.1.2-preview.9 59 9/28/2023
1.1.2-preview.8 63 9/26/2023
1.1.2-preview.7 62 9/25/2023
1.1.2-preview.6 64 9/25/2023
1.1.2-preview.5 552 9/21/2023
1.1.2-preview.4 60 9/20/2023
1.1.2-preview.3 57 9/20/2023
1.1.2-preview.2 56 9/20/2023
1.1.1 300 8/11/2023
1.1.1-preview.5 74 8/11/2023