Duende.Labs.IdentityModel 2026.726.12

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Duende.Labs.IdentityModel --version 2026.726.12
                    
NuGet\Install-Package Duende.Labs.IdentityModel -Version 2026.726.12
                    
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="Duende.Labs.IdentityModel" Version="2026.726.12" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Duende.Labs.IdentityModel" Version="2026.726.12" />
                    
Directory.Packages.props
<PackageReference Include="Duende.Labs.IdentityModel" />
                    
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 Duende.Labs.IdentityModel --version 2026.726.12
                    
#r "nuget: Duende.Labs.IdentityModel, 2026.726.12"
                    
#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.
#:package Duende.Labs.IdentityModel@2026.726.12
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Duende.Labs.IdentityModel&version=2026.726.12
                    
Install as a Cake Addin
#tool nuget:?package=Duende.Labs.IdentityModel&version=2026.726.12
                    
Install as a Cake Tool

IdentityModel for .NET

Modern OpenID Connect and OAuth 2.0 client library for .NET 10+.

Installation

dotnet add package Duende.Labs.IdentityModel

Note This package is experimental/preview. For production scenarios, consider Duende.IdentityModel.

Features

This package provides request/response models and HttpClient extensions for:

  • Discovery document retrieval
  • JSON Web Keys (JWK/JWKS)
  • Token endpoint requests
  • Token introspection and revocation
  • UserInfo endpoint access
  • Device authorization flow
  • Pushed Authorization Requests (PAR)
  • Dynamic client registration
  • Rich Authorization Requests (RAR)

Quick start

using Duende.Labs.IdentityModel.Discovery;

var client = new HttpClient();
var result = await client.GetDiscoveryDocumentAsync(cancellationToken);

if (result.IsSuccess)
{
    Console.WriteLine(result.Response.TokenEndpoint);
}
else
{
    Console.WriteLine(result.Error.Message);
}

Samples

Runnable samples are available in the repository under libs/identity-model/dotnet/samples/, for example:

dotnet run --project samples/Discovery

Learn more

License

IdentityModel is open source under the Apache 2.0 license.

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

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Duende.Labs.IdentityModel:

Package Downloads
Duende.Labs.AccessTokenManagement

Automatic access token management for OAuth client credential flows

Duende.Labs.IdentityModel.OidcClient

RFC8252 compliant and certified OpenID Connect and OAuth 2.0 client library for native applications

Duende.Labs.IdentityModel.DependencyInjection

Dependency injection and IHttpClientFactory integration for Duende.Labs.IdentityModel

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.806.21 113 8/6/2026
2026.804.20 112 8/4/2026
2026.729.19 112 7/29/2026
2026.729.18 101 7/29/2026
2026.729.17 98 7/29/2026
2026.728.16 101 7/28/2026
2026.728.15 106 7/28/2026
2026.727.14 472 7/27/2026
2026.727.13 98 7/27/2026
2026.726.12 139 7/26/2026
2026.725.11 739 7/25/2026
2026.724.10 118 7/24/2026
2026.724.9 102 7/24/2026
2026.724.8 93 7/24/2026
Loading failed