Microsoft.AspNetCore.Authentication.JwtBearer 10.0.0-rc.1.25451.107

About

Microsoft.AspNetCore.Authentication.JwtBearer is a middleware component designed for ASP.NET Core applications. It facilitates JSON Web Token (JWT) authentication, enabling secure authentication for APIs and web services. This package allows you to validate JWT tokens issued by an authentication server, ensuring secure access to your application's resources.

Key Features

  • Seamless integration with ASP.NET Core applications.
  • Supports JSON Web Token (JWT) authentication.
  • Enables secure authentication for APIs and web services.
  • Flexible configuration options for token validation parameters.
  • Works with .NET Core 3.0 and newer, as well as .NET Standard 2.1.

How to Use

using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.IdentityModel.Tokens;
using System.Text;

public void ConfigureServices(IServiceCollection services)
{
    services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
        .AddJwtBearer(options =>
        {
            options.TokenValidationParameters = new TokenValidationParameters
            {
                ValidateIssuer = true,
                ValidateAudience = true,
                ValidateLifetime = true,
                ValidateIssuerSigningKey = true,
                ValidIssuer = "your_issuer",
                ValidAudience = "your_audience",
                IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes("your_secret_key"))
            };
        });

    // Other configurations...
}

For more detailed configuration options and advanced scenarios, please refer to the blog JWT Validation and Authorization in ASP.NET Core.

Main Types

The main types provided by this library are:

  • JwtBearerDefaults: Contains default values for JWT Bearer authentication.
  • JwtBearerEvents: Events used to handle JWT Bearer authentication events.
  • JwtBearerHandler: Handles JWT Bearer authentication requests.
  • wtBearerOptions: Options for configuring JWT Bearer authentication.

Additional Documentation

Feedback & Contributing

Microsoft.AspNetCore.Authentication.JwtBearer is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on Microsoft.AspNetCore.Authentication.JwtBearer.

Packages Downloads
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
55
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
56
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
57
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
58
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
60
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
61
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
55
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
56
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
57
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
59
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
60
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
61
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
64
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
65

Version Downloads Last updated
10.0.0-rc.1.25451.107 1 09/09/2025
10.0.0-preview.7.25380.108 9 08/13/2025
10.0.0-preview.6.25358.103 15 07/16/2025
10.0.0-preview.5.25277.114 21 06/08/2025
10.0.0-preview.4.25258.110 22 05/15/2025
10.0.0-preview.3.25172.1 28 04/13/2025
10.0.0-preview.2.25164.1 35 03/31/2025
10.0.0-preview.1.25120.3 32 04/01/2025
9.0.9 1 09/09/2025
9.0.8 13 08/06/2025
9.0.7 37 07/09/2025
9.0.6 21 06/10/2025
9.0.5 26 05/15/2025
9.0.4 28 04/09/2025
9.0.3 127 03/25/2025
9.0.2 104 02/14/2025
9.0.1 39 02/07/2025
9.0.0 39 11/13/2024
9.0.0-rc.2.24474.3 33 10/15/2024
9.0.0-rc.1.24452.1 30 09/19/2024
9.0.0-preview.7.24406.2 37 08/20/2024
9.0.0-preview.6.24328.4 53 07/21/2024
9.0.0-preview.5.24306.11 46 06/24/2024
9.0.0-preview.4.24267.6 59 07/21/2024
9.0.0-preview.3.24172.13 53 07/21/2024
9.0.0-preview.2.24128.4 47 07/21/2024
9.0.0-preview.1.24081.5 48 07/21/2024
8.0.20 1 09/09/2025
8.0.19 12 08/06/2025
8.0.18 15 07/09/2025
8.0.17 16 06/10/2025
8.0.16 19 05/15/2025
8.0.15 32 04/09/2025
8.0.14 32 03/29/2025
8.0.13 32 03/29/2025
8.0.12 35 03/29/2025
8.0.11 31 11/13/2024
8.0.10 238 10/15/2024
8.0.8 176 08/20/2024
8.0.7 78 07/21/2024
8.0.6 55 06/28/2024
8.0.5 57 07/21/2024
8.0.4 57 07/21/2024
8.0.3 63 07/21/2024
8.0.2 112 02/18/2024
8.0.1 142 02/04/2024
8.0.0 127 07/03/2024
8.0.0-rc.2.23480.2 53 07/21/2024
8.0.0-rc.1.23421.29 49 07/21/2024
8.0.0-preview.7.23375.9 54 07/21/2024
8.0.0-preview.6.23329.11 49 07/21/2024
8.0.0-preview.5.23302.2 62 07/21/2024
8.0.0-preview.4.23260.4 43 07/21/2024
8.0.0-preview.3.23177.8 53 07/21/2024
8.0.0-preview.2.23153.2 52 07/21/2024
8.0.0-preview.1.23112.2 53 07/21/2024
7.0.20 53 07/21/2024
7.0.19 54 07/21/2024
7.0.18 56 07/21/2024
7.0.17 51 07/21/2024
7.0.16 62 07/21/2024
7.0.15 57 07/21/2024
7.0.14 63 07/21/2024
7.0.13 56 07/21/2024
7.0.12 49 07/21/2024
7.0.11 62 07/21/2024
7.0.10 47 07/21/2024
7.0.9 56 02/09/2024
7.0.8 46 07/21/2024
7.0.7 57 07/21/2024
7.0.5 48 07/21/2024
7.0.4 48 07/21/2024
7.0.3 96 02/04/2024
7.0.2 50 07/21/2024
7.0.1 49 07/21/2024
7.0.0 53 02/04/2024
7.0.0-rc.2.22476.2 52 07/21/2024
7.0.0-rc.1.22427.2 62 07/21/2024
7.0.0-preview.7.22376.6 57 07/21/2024
7.0.0-preview.6.22330.3 51 07/21/2024
7.0.0-preview.5.22303.8 57 07/21/2024
7.0.0-preview.4.22251.1 53 07/21/2024
7.0.0-preview.3.22178.4 59 07/21/2024
7.0.0-preview.2.22153.2 54 07/21/2024
7.0.0-preview.1.22109.13 49 07/21/2024
6.0.36 32 11/13/2024
6.0.35 33 10/17/2024
6.0.33 36 08/20/2024
6.0.32 55 07/21/2024
6.0.31 55 07/21/2024
6.0.30 46 07/21/2024
6.0.29 43 07/21/2024
6.0.28 51 07/21/2024
6.0.27 56 07/21/2024
6.0.26 58 07/21/2024
6.0.25 52 07/21/2024
6.0.24 51 07/21/2024
6.0.23 47 07/21/2024
6.0.22 51 07/21/2024
6.0.21 60 07/21/2024
6.0.20 51 07/21/2024
6.0.19 47 07/21/2024
6.0.18 51 07/21/2024
6.0.16 53 07/21/2024
6.0.15 55 07/21/2024
6.0.14 49 07/21/2024
6.0.13 63 07/21/2024
6.0.12 57 07/21/2024
6.0.11 46 07/21/2024
6.0.10 54 07/21/2024
6.0.9 53 07/21/2024
6.0.8 47 07/21/2024
6.0.7 61 07/21/2024
6.0.6 47 07/21/2024
6.0.5 52 07/21/2024
6.0.4 54 07/21/2024
6.0.3 86 02/04/2024
6.0.2 62 07/21/2024
6.0.1 51 07/21/2024
6.0.0 66 07/21/2024
6.0.0-rc.2.21480.10 56 07/21/2024
6.0.0-rc.1.21452.15 58 07/21/2024
6.0.0-preview.7.21378.6 57 07/21/2024
6.0.0-preview.6.21355.2 43 07/21/2024
6.0.0-preview.5.21301.17 47 07/21/2024
6.0.0-preview.4.21253.5 49 07/21/2024
6.0.0-preview.3.21201.13 60 07/21/2024
6.0.0-preview.2.21154.6 50 07/21/2024
6.0.0-preview.1.21103.6 45 07/21/2024
5.0.17 52 07/21/2024
5.0.16 66 07/21/2024
5.0.15 53 07/21/2024
5.0.14 58 07/21/2024
5.0.13 58 07/21/2024
5.0.12 62 07/21/2024
5.0.11 51 07/21/2024
5.0.10 58 07/21/2024
5.0.9 54 07/21/2024
5.0.8 58 07/21/2024
5.0.7 50 07/21/2024
5.0.6 56 07/21/2024
5.0.5 53 07/21/2024
5.0.4 51 07/21/2024
5.0.3 55 07/21/2024
5.0.2 59 07/21/2024
5.0.1 51 07/21/2024
5.0.0 48 07/21/2024
5.0.0-rc.2.20475.17 50 07/21/2024
5.0.0-rc.1.20451.17 49 07/21/2024
5.0.0-preview.8.20414.8 58 07/21/2024
5.0.0-preview.7.20365.19 54 07/21/2024
5.0.0-preview.6.20312.15 52 07/21/2024
5.0.0-preview.5.20279.2 43 07/21/2024
5.0.0-preview.4.20257.10 57 07/21/2024
5.0.0-preview.3.20215.14 55 07/21/2024
5.0.0-preview.2.20167.3 60 07/21/2024
5.0.0-preview.1.20124.5 49 07/21/2024
3.1.32 56 07/21/2024
3.1.31 47 07/21/2024
3.1.30 49 07/21/2024
3.1.29 55 07/21/2024
3.1.28 49 07/21/2024
3.1.27 52 07/21/2024
3.1.26 59 07/21/2024
3.1.25 56 07/21/2024
3.1.24 60 07/21/2024
3.1.23 51 07/21/2024
3.1.22 49 07/21/2024
3.1.21 50 07/21/2024
3.1.20 55 07/21/2024
3.1.19 60 07/21/2024
3.1.18 51 07/21/2024
3.1.17 49 07/21/2024
3.1.16 60 07/21/2024
3.1.15 65 07/21/2024
3.1.14 57 07/21/2024
3.1.13 41 07/21/2024
3.1.12 57 07/21/2024
3.1.11 56 07/21/2024
3.1.10 58 07/21/2024
3.1.9 52 07/21/2024
3.1.8 58 07/21/2024
3.1.7 62 07/21/2024
3.1.6 57 07/21/2024
3.1.5 63 07/21/2024
3.1.4 56 07/21/2024
3.1.3 61 07/21/2024
3.1.2 67 07/21/2024
3.1.1 56 07/21/2024
3.1.0 60 07/21/2024
3.1.0-preview3.19555.2 62 07/21/2024
3.1.0-preview2.19528.8 54 07/21/2024
3.1.0-preview1.19508.20 50 07/21/2024
3.0.3 56 07/21/2024
3.0.2 53 07/21/2024
3.0.0 63 07/21/2024
3.0.0-rc1.19457.4 52 07/21/2024
3.0.0-preview9.19424.4 48 07/21/2024
3.0.0-preview8.19405.7 46 07/21/2024
3.0.0-preview7.19365.7 48 07/21/2024
3.0.0-preview6.19307.2 38 07/21/2024
3.0.0-preview5-19227-01 56 07/21/2024
3.0.0-preview4-19216-03 41 07/21/2024
3.0.0-preview3-19153-02 55 07/21/2024
3.0.0-preview-19075-0444 45 07/21/2024
2.3.0 31 03/30/2025
2.2.0 59 07/21/2024
2.2.0-preview3-35497 47 07/21/2024
2.2.0-preview2-35157 64 07/21/2024
2.2.0-preview1-35029 52 07/21/2024
2.1.30 58 07/21/2024
2.1.2 48 07/21/2024
2.1.1 57 07/21/2024
2.1.0 53 07/21/2024
2.1.0-rc1-final 59 07/21/2024
2.1.0-preview2-final 55 07/21/2024
2.1.0-preview1-final 56 07/21/2024
2.0.4 52 07/21/2024
2.0.3 60 07/21/2024
2.0.1 50 07/21/2024
2.0.0 57 07/21/2024
2.0.0-preview2-final 45 07/21/2024
2.0.0-preview1-final 48 07/21/2024
1.1.3 50 07/21/2024
1.1.2 56 07/21/2024
1.1.1 54 07/21/2024
1.1.0 52 07/21/2024
1.1.0-preview1-final 59 07/21/2024
1.0.5 58 07/21/2024
1.0.4 54 07/21/2024
1.0.3 54 07/21/2024
1.0.2 59 07/21/2024
1.0.1 47 07/21/2024
1.0.0 54 07/21/2024
1.0.0-rc2-final 50 07/21/2024