Keycloak.AuthServices.Authorization 2.6.1

Prefix Reserved
dotnet add package Keycloak.AuthServices.Authorization --version 2.6.1
                    
NuGet\Install-Package Keycloak.AuthServices.Authorization -Version 2.6.1
                    
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="Keycloak.AuthServices.Authorization" Version="2.6.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Keycloak.AuthServices.Authorization" Version="2.6.1" />
                    
Directory.Packages.props
<PackageReference Include="Keycloak.AuthServices.Authorization" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Keycloak.AuthServices.Authorization --version 2.6.1
                    
#r "nuget: Keycloak.AuthServices.Authorization, 2.6.1"
                    
#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.
#addin nuget:?package=Keycloak.AuthServices.Authorization&version=2.6.1
                    
Install Keycloak.AuthServices.Authorization as a Cake Addin
#tool nuget:?package=Keycloak.AuthServices.Authorization&version=2.6.1
                    
Install Keycloak.AuthServices.Authorization as a Cake Tool

Keycloak.AuthServices

Discord Build CodeQL NuGet contributionswelcome Conventional Commits License

πŸ” Easy Authentication and Authorization with Keycloak in .NET.

Package Version Description
Keycloak.AuthServices.Authentication Nuget Keycloak Authentication JWT + OICD
Keycloak.AuthServices.Authorization Nuget Authorization Services. Use Keycloak as authorization server
Keycloak.AuthServices.Sdk Nuget HTTP API integration with Keycloak
Keycloak.AuthServices.Sdk.Kiota Nuget HTTP API integration with Keycloak based on OpenAPI
Keycloak.AuthServices.OpenTelemetry Nuget OpenTelemetry support
Keycloak.AuthServices.Templates Nuget dotnet new templates

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (11)

Showing the top 5 NuGet packages that depend on Keycloak.AuthServices.Authorization:

Package Downloads
Gathrr.Framework.Infrastructure

Package Description

Wcz.Layout

Package Description

Inspire.Framework.Infrastructure

Package Description

Iskra.Core.Auth

Настройка Π°Π²Ρ‚ΠΎΡ€ΠΈΠ·Π°Ρ†ΠΈΠΈ Π² Keycloak.

Iskra.Core.ApiDocumentation

Π€ΠΎΡ€ΠΌΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ Swagger Π΄ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Π°Ρ†ΠΈΠΈ с настройкой Π°Π²Ρ‚ΠΎΡ€ΠΈΠ·Π°Ρ†ΠΈΠΈ.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.6.1 3,678 3/13/2025
2.6.0 60,193 11/30/2024
2.5.5 5,958 11/27/2024
2.5.3 140,628 8/19/2024
2.5.2 98,589 6/15/2024
2.5.1 3,973 6/11/2024
2.5.0 10,904 6/2/2024
2.4.1 15,352 5/16/2024
2.4.0 1,350 5/12/2024
2.3.0 365 5/10/2024
2.3.0-pre-1 86 5/9/2024
2.2.1 845 5/9/2024
2.2.0 185 5/8/2024
2.1.0 3,122 5/7/2024
2.0.0 3,710 5/5/2024
2.0.0-pre-4 128 5/4/2024
2.0.0-pre-3 213 4/26/2024
2.0.0-pre-2 113 4/25/2024
2.0.0-pre-1 359 4/24/2024
1.6.0 288,842 10/25/2023
1.5.2 178,324 5/27/2023
1.5.1 244,929 1/17/2023
1.5.0 641 1/17/2023
1.4.1 2,632 1/12/2023
1.4.0 5,563 1/4/2023
1.3.0 1,658 12/28/2022
1.2.1 36,555 9/22/2022
1.2.0 2,873 8/24/2022
1.1.0 13,264 1/30/2022
1.0.5 152 1/29/2022
1.0.4 151 1/28/2022
1.0.3 146 1/28/2022
1.0.2 148 1/23/2022
1.0.1 632 1/19/2022
1.0.0 4,770 1/19/2022