Skip to content

Conversation

@kailash-b
Copy link
Contributor

@kailash-b kailash-b commented Nov 20, 2025

Change Log

1.0.0-beta.1 (2025-11-20)

Installation

dotnet add package Auth0.AspNetCore.Authentication.Api

Usage

builder.Services.AddAuth0ApiAuthentication(options =>
{
    options.Domain = builder.Configuration["Auth0:Domain"];
    options.JwtBearerOptions = new JwtBearerOptions
    {
        Audience = builder.Configuration["Auth0:Audience"]
    };
});

Added

  • JWT Bearer authentication with Auth0-specific configuration
  • Built-in DPoP (RFC 9449) support with three enforcement modes: Allowed, Required, Disabled
  • Fluent configuration API via AddAuth0ApiAuthentication() and WithDPoP()
  • Comprehensive documentation with examples and migration guide
  • Playground application with Postman collection

Dependencies

  • Microsoft.AspNetCore.Authentication.JwtBearer 8.0.21
  • Microsoft.Extensions.Logging.Abstractions 8.0.0
  • Target framework: .NET 8.0+

@kailash-b kailash-b force-pushed the release/1.0.0-beta.1 branch from 9ba6116 to 2fb60b1 Compare November 20, 2025 06:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants