Microsoft.AspNetCore.Authentication.JwtBearer 9.0.0-rc.2.24474.3

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
25
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
26
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
29
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
30
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
31
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.
25
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.
26
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.
28
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.
29
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.
30
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.
32
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.
34

Version Downloads Last updated
9.0.0-rc.2.24474.3 4 10/15/2024
9.0.0-rc.1.24452.1 5 09/19/2024
9.0.0-preview.7.24406.2 9 08/20/2024
9.0.0-preview.6.24328.4 25 07/21/2024
9.0.0-preview.5.24306.11 22 06/24/2024
9.0.0-preview.4.24267.6 34 07/21/2024
9.0.0-preview.3.24172.13 26 07/21/2024
9.0.0-preview.2.24128.4 21 07/21/2024
9.0.0-preview.1.24081.5 23 07/21/2024
8.0.10 15 10/15/2024
8.0.8 42 08/20/2024
8.0.7 51 07/21/2024
8.0.6 28 06/28/2024
8.0.5 25 07/21/2024
8.0.4 24 07/21/2024
8.0.3 34 07/21/2024
8.0.2 50 02/18/2024
8.0.1 99 02/04/2024
8.0.0 41 07/03/2024
8.0.0-rc.2.23480.2 20 07/21/2024
8.0.0-rc.1.23421.29 24 07/21/2024
8.0.0-preview.7.23375.9 30 07/21/2024
8.0.0-preview.6.23329.11 24 07/21/2024
8.0.0-preview.5.23302.2 32 07/21/2024
8.0.0-preview.4.23260.4 17 07/21/2024
8.0.0-preview.3.23177.8 27 07/21/2024
8.0.0-preview.2.23153.2 25 07/21/2024
8.0.0-preview.1.23112.2 24 07/21/2024
7.0.20 25 07/21/2024
7.0.19 24 07/21/2024
7.0.18 26 07/21/2024
7.0.17 24 07/21/2024
7.0.16 32 07/21/2024
7.0.15 27 07/21/2024
7.0.14 37 07/21/2024
7.0.13 29 07/21/2024
7.0.12 23 07/21/2024
7.0.11 29 07/21/2024
7.0.10 17 07/21/2024
7.0.9 25 02/09/2024
7.0.8 21 07/21/2024
7.0.7 30 07/21/2024
7.0.5 18 07/21/2024
7.0.4 17 07/21/2024
7.0.3 69 02/04/2024
7.0.2 22 07/21/2024
7.0.1 22 07/21/2024
7.0.0 26 02/04/2024
7.0.0-rc.2.22476.2 25 07/21/2024
7.0.0-rc.1.22427.2 32 07/21/2024
7.0.0-preview.7.22376.6 31 07/21/2024
7.0.0-preview.6.22330.3 23 07/21/2024
7.0.0-preview.5.22303.8 24 07/21/2024
7.0.0-preview.4.22251.1 27 07/21/2024
7.0.0-preview.3.22178.4 28 07/21/2024
7.0.0-preview.2.22153.2 27 07/21/2024
7.0.0-preview.1.22109.13 20 07/21/2024
6.0.35 4 10/17/2024
6.0.33 10 08/20/2024
6.0.32 25 07/21/2024
6.0.31 26 07/21/2024
6.0.30 16 07/21/2024
6.0.29 20 07/21/2024
6.0.28 23 07/21/2024
6.0.27 23 07/21/2024
6.0.26 22 07/21/2024
6.0.25 22 07/21/2024
6.0.24 20 07/21/2024
6.0.23 17 07/21/2024
6.0.22 17 07/21/2024
6.0.21 31 07/21/2024
6.0.20 21 07/21/2024
6.0.19 17 07/21/2024
6.0.18 20 07/21/2024
6.0.16 26 07/21/2024
6.0.15 21 07/21/2024
6.0.14 22 07/21/2024
6.0.13 31 07/21/2024
6.0.12 25 07/21/2024
6.0.11 18 07/21/2024
6.0.10 20 07/21/2024
6.0.9 23 07/21/2024
6.0.8 17 07/21/2024
6.0.7 30 07/21/2024
6.0.6 22 07/21/2024
6.0.5 17 07/21/2024
6.0.4 25 07/21/2024
6.0.3 55 02/04/2024
6.0.2 23 07/21/2024
6.0.1 24 07/21/2024
6.0.0 32 07/21/2024
6.0.0-rc.2.21480.10 28 07/21/2024
6.0.0-rc.1.21452.15 26 07/21/2024
6.0.0-preview.7.21378.6 32 07/21/2024
6.0.0-preview.6.21355.2 19 07/21/2024
6.0.0-preview.5.21301.17 23 07/21/2024
6.0.0-preview.4.21253.5 21 07/21/2024
6.0.0-preview.3.21201.13 31 07/21/2024
6.0.0-preview.2.21154.6 24 07/21/2024
6.0.0-preview.1.21103.6 19 07/21/2024
5.0.17 20 07/21/2024
5.0.16 32 07/21/2024
5.0.15 28 07/21/2024
5.0.14 24 07/21/2024
5.0.13 25 07/21/2024
5.0.12 31 07/21/2024
5.0.11 21 07/21/2024
5.0.10 25 07/21/2024
5.0.9 25 07/21/2024
5.0.8 30 07/21/2024
5.0.7 23 07/21/2024
5.0.6 29 07/21/2024
5.0.5 27 07/21/2024
5.0.4 24 07/21/2024
5.0.3 25 07/21/2024
5.0.2 24 07/21/2024
5.0.1 24 07/21/2024
5.0.0 18 07/21/2024
5.0.0-rc.2.20475.17 22 07/21/2024
5.0.0-rc.1.20451.17 24 07/21/2024
5.0.0-preview.8.20414.8 30 07/21/2024
5.0.0-preview.7.20365.19 27 07/21/2024
5.0.0-preview.6.20312.15 21 07/21/2024
5.0.0-preview.5.20279.2 18 07/21/2024
5.0.0-preview.4.20257.10 31 07/21/2024
5.0.0-preview.3.20215.14 19 07/21/2024
5.0.0-preview.2.20167.3 34 07/21/2024
5.0.0-preview.1.20124.5 22 07/21/2024
3.1.32 30 07/21/2024
3.1.31 21 07/21/2024
3.1.30 23 07/21/2024
3.1.29 26 07/21/2024
3.1.28 20 07/21/2024
3.1.27 20 07/21/2024
3.1.26 33 07/21/2024
3.1.25 29 07/21/2024
3.1.24 33 07/21/2024
3.1.23 24 07/21/2024
3.1.22 19 07/21/2024
3.1.21 22 07/21/2024
3.1.20 28 07/21/2024
3.1.19 33 07/21/2024
3.1.18 20 07/21/2024
3.1.17 19 07/21/2024
3.1.16 28 07/21/2024
3.1.15 26 07/21/2024
3.1.14 23 07/21/2024
3.1.13 14 07/21/2024
3.1.12 31 07/21/2024
3.1.11 26 07/21/2024
3.1.10 23 07/21/2024
3.1.9 29 07/21/2024
3.1.8 31 07/21/2024
3.1.7 31 07/21/2024
3.1.6 30 07/21/2024
3.1.5 35 07/21/2024
3.1.4 27 07/21/2024
3.1.3 31 07/21/2024
3.1.2 24 07/21/2024
3.1.1 30 07/21/2024
3.1.0 26 07/21/2024
3.1.0-preview3.19555.2 31 07/21/2024
3.1.0-preview2.19528.8 22 07/21/2024
3.1.0-preview1.19508.20 25 07/21/2024
3.0.3 31 07/21/2024
3.0.2 21 07/21/2024
3.0.0 30 07/21/2024
3.0.0-rc1.19457.4 25 07/21/2024
3.0.0-preview9.19424.4 22 07/21/2024
3.0.0-preview8.19405.7 22 07/21/2024
3.0.0-preview7.19365.7 21 07/21/2024
3.0.0-preview6.19307.2 15 07/21/2024
3.0.0-preview5-19227-01 30 07/21/2024
3.0.0-preview4-19216-03 16 07/21/2024
3.0.0-preview3-19153-02 25 07/21/2024
3.0.0-preview-19075-0444 20 07/21/2024
2.2.0 31 07/21/2024
2.2.0-preview3-35497 21 07/21/2024
2.2.0-preview2-35157 32 07/21/2024
2.2.0-preview1-35029 24 07/21/2024
2.1.30 29 07/21/2024
2.1.2 20 07/21/2024
2.1.1 25 07/21/2024
2.1.0 26 07/21/2024
2.1.0-rc1-final 29 07/21/2024
2.1.0-preview2-final 29 07/21/2024
2.1.0-preview1-final 26 07/21/2024
2.0.4 20 07/21/2024
2.0.3 30 07/21/2024
2.0.1 23 07/21/2024
2.0.0 25 07/21/2024
2.0.0-preview2-final 15 07/21/2024
2.0.0-preview1-final 23 07/21/2024
1.1.3 22 07/21/2024
1.1.2 31 07/21/2024
1.1.1 26 07/21/2024
1.1.0 23 07/21/2024
1.1.0-preview1-final 32 07/21/2024
1.0.5 23 07/21/2024
1.0.4 26 07/21/2024
1.0.3 28 07/21/2024
1.0.2 30 07/21/2024
1.0.1 20 07/21/2024
1.0.0 23 07/21/2024
1.0.0-rc2-final 22 07/21/2024