Keycloak.AuthServices.Common
2.8.0
Prefix Reserved
dotnet add package Keycloak.AuthServices.Common --version 2.8.0
NuGet\Install-Package Keycloak.AuthServices.Common -Version 2.8.0
<PackageReference Include="Keycloak.AuthServices.Common" Version="2.8.0" />
<PackageVersion Include="Keycloak.AuthServices.Common" Version="2.8.0" />
<PackageReference Include="Keycloak.AuthServices.Common" />
paket add Keycloak.AuthServices.Common --version 2.8.0
#r "nuget: Keycloak.AuthServices.Common, 2.8.0"
#:package Keycloak.AuthServices.Common@2.8.0
#addin nuget:?package=Keycloak.AuthServices.Common&version=2.8.0
#tool nuget:?package=Keycloak.AuthServices.Common&version=2.8.0
Keycloak.AuthServices
🔐 Easy Authentication and Authorization with Keycloak in .NET.
Documentation
For Developer Documentation see: https://nikiforovall.github.io/keycloak-authorization-services-dotnet
API Reference
See: https://nikiforovall.github.io/keycloak-authorization-services-dotnet-docs
Getting Started
Install packages:
dotnet add package Keycloak.AuthServices.Authentication
// Program.cs
using Keycloak.AuthServices.Authentication;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddKeycloakWebApiAuthentication(builder.Configuration);
builder.Services.AddAuthorization();
var app = builder.Build();
app.UseAuthentication();
app.UseAuthorization();
app.MapGet("/", () => "Hello World!").RequireAuthorization();
app.Run();
In this example, configuration is based on appsettings.json.
//appsettings.json
{
"Keycloak": {
"realm": "Test",
"auth-server-url": "http://localhost:8080/",
"ssl-required": "none",
"resource": "test-client",
"verify-token-audience": false,
"credentials": {
"secret": ""
},
"confidential-port": 0
}
}
Example - Add Authorization
With Keycloak.AuthServices.Authorization, you can implement role-based authorization in your application. This package allows you to define policies based on roles. Also, you can use Keycloak as Authorization Server. It is a powerful way to organize and apply authorization polices centrally.
var builder = WebApplication.CreateBuilder(args);
var host = builder.Host;
var configuration = builder.Configuration;
var services = builder.Services;
services.AddKeycloakWebApiAuthentication(configuration);
services.AddAuthorization(options =>
{
options.AddPolicy("AdminAndUser", builder =>
{
builder
.RequireRealmRoles("User") // Realm role is fetched from token
.RequireResourceRoles("Admin"); // Resource/Client role is fetched from token
});
})
.AddKeycloakAuthorization(configuration);
var app = builder.Build();
app.UseAuthentication();
app.UseAuthorization();
app.MapGet("/hello", () => "[]")
.RequireAuthorization("AdminAndUser");
app.Run();
Example - Invoke Admin API
var services = new ServiceCollection();
services.AddKeycloakAdminHttpClient(new KeycloakAdminClientOptions
{
AuthServerUrl = "http://localhost:8080/",
Realm = "master",
Resource = "admin-api",
});
var sp = services.BuildServiceProvider();
var client = sp.GetRequiredService<IKeycloakRealmClient>();
var realm = await client.GetRealmAsync("Test");
Build and Development
dotnet cake --target build
dotnet cake --target test
dotnet pack -o ./Artefacts
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Keycloak.AuthServices.Common:
| Package | Downloads |
|---|---|
|
Keycloak.AuthServices.Sdk
HttpClient integration with Keycloak. Includes HTTP Admin REST API, Protection API. |
|
|
Keycloak.AuthServices.Sdk.Kiota
Keycloak HTTP Admin API generated by Kiota |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.8.0 | 12,717 | 12/25/2025 |
| 2.7.0 | 84,251 | 9/4/2025 |
| 2.6.1 | 108,658 | 3/13/2025 |
| 2.6.0 | 110,623 | 11/30/2024 |
| 2.5.5 | 80,673 | 11/27/2024 |
| 2.5.3 | 148,298 | 8/19/2024 |
| 2.5.2 | 75,050 | 6/15/2024 |
| 2.5.1 | 2,258 | 6/11/2024 |
| 2.5.0 | 9,844 | 6/2/2024 |
| 2.4.1 | 10,982 | 5/16/2024 |
| 2.4.0 | 1,202 | 5/12/2024 |
| 2.3.0 | 553 | 5/10/2024 |
| 2.3.0-pre-1 | 198 | 5/9/2024 |
| 2.2.1 | 1,164 | 5/9/2024 |
| 2.2.0 | 403 | 5/8/2024 |
| 2.1.0 | 2,849 | 5/7/2024 |
| 2.0.0 | 1,464 | 5/5/2024 |
| 2.0.0-pre-4 | 196 | 5/4/2024 |
| 2.0.0-pre-3 | 282 | 4/26/2024 |
| 2.0.0-pre-2 | 209 | 4/25/2024 |
The release notes are available at https://github.com/NikiforovAll/keycloak-authorization-services-dotnet/releases