Skip to content

Releases: DuendeSoftware/aspnetcore

Duende.AspNetCore.Authentication.JwtBearer 0.1.3

25 Oct 14:02
05f06ce
Compare
Choose a tag to compare

Duende.AspNetCore.Authentication.JwtBearer 0.1.3

This is the initial release of Duende.AspNetCore.Authentication.JwtBearer, which is the Duende extensions to the ASP.NET Core JwtBearer authentication handler. This package helps developers leverage advanced features of IdentityServer from their API resources. This initial release adds support for DPoP.

Usage

  • Install the package
  • Add a JwtBearer authentication scheme as normal
  • Apply DPoP support to the scheme:
builder.Services.ConfigureDPoPTokensForScheme("token");
  • Add an IDistributedCache implementation for replay detection (see Microsoft's docs).