Workleap.AspNetCore.Authentication.ClientCredentialsGrant
1.1.3-preview.8
Prefix Reserved
See the version list below for details.
dotnet add package Workleap.AspNetCore.Authentication.ClientCredentialsGrant --version 1.1.3-preview.8
NuGet\Install-Package Workleap.AspNetCore.Authentication.ClientCredentialsGrant -Version 1.1.3-preview.8
<PackageReference Include="Workleap.AspNetCore.Authentication.ClientCredentialsGrant" Version="1.1.3-preview.8" />
paket add Workleap.AspNetCore.Authentication.ClientCredentialsGrant --version 1.1.3-preview.8
#r "nuget: Workleap.AspNetCore.Authentication.ClientCredentialsGrant, 1.1.3-preview.8"
// Install Workleap.AspNetCore.Authentication.ClientCredentialsGrant as a Cake Addin #addin nuget:?package=Workleap.AspNetCore.Authentication.ClientCredentialsGrant&version=1.1.3-preview.8&prerelease // Install Workleap.AspNetCore.Authentication.ClientCredentialsGrant as a Cake Tool #tool nuget:?package=Workleap.AspNetCore.Authentication.ClientCredentialsGrant&version=1.1.3-preview.8&prerelease
Workleap.Authentication.ClientCredentialsGrant
Description | Download link | Build status |
---|---|---|
Client-side library for any .NET application | ||
Server-side library for ASP.NET Core web applications |
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:
- Automatic acquisition and lifetime management of client credentials-based access tokens.
- Optimized access token caching with two layers of cache using IMemoryCache, IDistributedCache, and data protection for encryption.
- Built-in customizable retry policy for production-grade resilient HTTP requests made to the OAuth 2.0 authorization server.
- Built as an extension for the Microsoft.Extensions.Http library.
- Support for .NET Standard 2.0.
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");
}
}
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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. |
-
net6.0
-
net7.0
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 |
---|---|---|
2.1.1-preview.20 | 33 | 10/28/2024 |
2.1.1-preview.19 | 28 | 10/28/2024 |
2.1.1-preview.18 | 29 | 10/28/2024 |
2.1.1-preview.17 | 30 | 10/28/2024 |
2.1.1-preview.16 | 32 | 10/28/2024 |
2.1.1-preview.15 | 30 | 10/28/2024 |
2.1.1-preview.14 | 35 | 10/28/2024 |
2.1.1-preview.13 | 29 | 10/28/2024 |
2.1.1-preview.11 | 38 | 10/7/2024 |
2.1.1-preview.10 | 41 | 10/1/2024 |
2.1.1-preview.9 | 44 | 9/30/2024 |
2.1.1-preview.8 | 45 | 9/27/2024 |
2.1.1-preview.7 | 37 | 9/27/2024 |
2.1.1-preview.6 | 53 | 9/13/2024 |
2.1.1-preview.5 | 43 | 9/13/2024 |
2.1.1-preview.4 | 45 | 9/13/2024 |
2.1.1-preview.3 | 80 | 9/13/2024 |
2.1.1-preview.2 | 68 | 8/27/2024 |
2.1.1-preview.1 | 44 | 8/27/2024 |
2.1.0 | 4,297 | 8/19/2024 |
2.0.1-preview.6 | 66 | 8/19/2024 |
2.0.1-preview.5 | 67 | 8/13/2024 |
2.0.1-preview.4 | 41 | 8/5/2024 |
2.0.1-preview.3 | 32 | 8/5/2024 |
2.0.1-preview.2 | 42 | 7/23/2024 |
2.0.1-preview.1 | 45 | 7/23/2024 |
2.0.0 | 1,777 | 7/22/2024 |
1.3.1-preview.8 | 46 | 7/15/2024 |
1.3.1-preview.7 | 34 | 7/5/2024 |
1.3.1-preview.6 | 47 | 7/3/2024 |
1.3.1-preview.5 | 50 | 6/25/2024 |
1.3.1-preview.4 | 61 | 6/20/2024 |
1.3.1-preview.3 | 50 | 6/14/2024 |
1.3.1-preview.2 | 56 | 6/10/2024 |
1.3.1-preview.1 | 52 | 6/10/2024 |
1.3.0 | 15,038 | 5/22/2024 |
1.2.4-preview.2 | 61 | 5/22/2024 |
1.2.4-preview.1 | 48 | 5/21/2024 |
1.2.3 | 2,701 | 5/14/2024 |
1.2.3-preview.8 | 48 | 5/14/2024 |
1.2.3-preview.7 | 58 | 5/10/2024 |
1.2.3-preview.6 | 50 | 5/3/2024 |
1.2.3-preview.5 | 66 | 4/16/2024 |
1.2.3-preview.4 | 55 | 4/15/2024 |
1.2.3-preview.3 | 62 | 4/12/2024 |
1.2.3-preview.2 | 58 | 4/3/2024 |
1.2.3-preview.1 | 60 | 4/3/2024 |
1.2.2 | 6,130 | 3/26/2024 |
1.2.1 | 99 | 3/26/2024 |
1.2.1-preview.17 | 54 | 3/26/2024 |
1.2.1-preview.16 | 59 | 3/26/2024 |
1.2.1-preview.15 | 53 | 3/8/2024 |
1.2.1-preview.14 | 63 | 3/7/2024 |
1.2.1-preview.13 | 64 | 3/4/2024 |
1.2.1-preview.12 | 62 | 3/1/2024 |
1.2.1-preview.11 | 56 | 2/16/2024 |
1.2.1-preview.10 | 62 | 2/12/2024 |
1.2.1-preview.9 | 67 | 2/6/2024 |
1.2.1-preview.8 | 59 | 2/6/2024 |
1.2.1-preview.7 | 55 | 2/2/2024 |
1.2.1-preview.6 | 61 | 2/2/2024 |
1.2.1-preview.4 | 57 | 1/22/2024 |
1.2.1-preview.3 | 63 | 1/12/2024 |
1.2.1-preview.2 | 60 | 1/12/2024 |
1.2.1-preview.1 | 79 | 12/18/2023 |
1.2.0 | 12,215 | 12/14/2023 |
1.1.4-preview.1 | 68 | 12/14/2023 |
1.1.3 | 2,206 | 12/5/2023 |
1.1.3-preview.11 | 81 | 12/4/2023 |
1.1.3-preview.10 | 87 | 11/26/2023 |
1.1.3-preview.9 | 73 | 11/20/2023 |
1.1.3-preview.8 | 64 | 11/17/2023 |
1.1.3-preview.7 | 72 | 11/13/2023 |
1.1.3-preview.6 | 63 | 11/13/2023 |
1.1.3-preview.5 | 68 | 11/7/2023 |
1.1.3-preview.4 | 76 | 10/30/2023 |
1.1.3-preview.3 | 83 | 10/20/2023 |
1.1.3-preview.2 | 76 | 10/17/2023 |
1.1.3-preview.1 | 77 | 10/13/2023 |
1.1.2 | 8,580 | 10/4/2023 |
1.1.2-preview.9 | 69 | 9/28/2023 |
1.1.2-preview.8 | 79 | 9/26/2023 |
1.1.2-preview.7 | 78 | 9/25/2023 |
1.1.2-preview.6 | 78 | 9/25/2023 |
1.1.2-preview.5 | 62 | 9/21/2023 |
1.1.2-preview.4 | 78 | 9/20/2023 |
1.1.2-preview.3 | 68 | 9/20/2023 |
1.1.2-preview.2 | 71 | 9/20/2023 |
1.1.1 | 1,258 | 8/11/2023 |
1.1.1-preview.5 | 85 | 8/11/2023 |