Keycloak.AuthServices.Sdk
2.7.0
Prefix Reserved
dotnet add package Keycloak.AuthServices.Sdk --version 2.7.0
NuGet\Install-Package Keycloak.AuthServices.Sdk -Version 2.7.0
<PackageReference Include="Keycloak.AuthServices.Sdk" Version="2.7.0" />
<PackageVersion Include="Keycloak.AuthServices.Sdk" Version="2.7.0" />
<PackageReference Include="Keycloak.AuthServices.Sdk" />
paket add Keycloak.AuthServices.Sdk --version 2.7.0
#r "nuget: Keycloak.AuthServices.Sdk, 2.7.0"
#:package Keycloak.AuthServices.Sdk@2.7.0
#addin nuget:?package=Keycloak.AuthServices.Sdk&version=2.7.0
#tool nuget:?package=Keycloak.AuthServices.Sdk&version=2.7.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 | net8.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
-
net8.0
- Keycloak.AuthServices.Common (>= 2.7.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.8)
- Microsoft.Extensions.Http (>= 9.0.8)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Keycloak.AuthServices.Sdk:
Package | Downloads |
---|---|
Gathrr.Framework.Infrastructure
Package Description |
|
Inspire.Framework.Infrastructure
Package Description |
|
Codehard.IdentityProvider.Keycloak
A client library for Codehard's Identity Provider with Keycloak as a provider. |
|
FastModule.Keycloak
Adds Keycloak integration for authentication and authorization, enabling seamless OIDC, OAuth2, and JWT-based security within FastModule-based applications. |
|
Craft.KeycloakModule
The Keycloak Module for Craft simplifies the integration of Keycloak-based authentication and authorization into your application. By default, Craft leverages Keycloak's robust identity and access management services to secure your application, ensuring a seamless and secure user experience. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
2.7.0 | 391 | 9/4/2025 |
2.6.1 | 34,758 | 3/13/2025 |
2.6.0 | 48,658 | 11/30/2024 |
2.5.5 | 3,619 | 11/27/2024 |
2.5.3 | 77,745 | 8/19/2024 |
2.5.2 | 17,614 | 6/15/2024 |
2.5.1 | 998 | 6/11/2024 |
2.5.0 | 8,768 | 6/2/2024 |
2.4.1 | 6,297 | 5/16/2024 |
2.4.0 | 914 | 5/12/2024 |
2.3.0 | 368 | 5/10/2024 |
2.3.0-pre-1 | 134 | 5/9/2024 |
2.2.1 | 637 | 5/9/2024 |
2.2.0 | 204 | 5/8/2024 |
2.1.0 | 247 | 5/7/2024 |
2.0.0 | 566 | 5/5/2024 |
2.0.0-pre-4 | 144 | 5/4/2024 |
2.0.0-pre-3 | 197 | 4/26/2024 |
2.0.0-pre-2 | 145 | 4/25/2024 |
2.0.0-pre-1 | 419 | 4/24/2024 |
1.6.0 | 118,365 | 10/25/2023 |
1.5.2 | 68,648 | 5/27/2023 |
1.5.1 | 51,845 | 1/17/2023 |
1.5.0 | 638 | 1/17/2023 |
1.4.1 | 1,078 | 1/12/2023 |
1.4.0 | 535 | 1/4/2023 |
1.3.0 | 1,107 | 12/28/2022 |
1.2.1 | 9,852 | 9/22/2022 |
1.2.0 | 743 | 8/24/2022 |
1.1.0 | 14,700 | 1/30/2022 |
1.0.5 | 163 | 1/29/2022 |
1.0.4 | 3,413 | 1/28/2022 |
1.0.3 | 151 | 1/28/2022 |
1.0.2 | 168 | 1/23/2022 |
1.0.1 | 668 | 1/19/2022 |
1.0.0 | 1,022 | 1/19/2022 |
The release notes are available at https://github.com/NikiforovAll/keycloak-authorization-services-dotnet/releases