Microsoft.AspNetCore.Authentication.OpenIdConnect 10.0.0

About

Microsoft.AspNetCore.Authentication.OpenIdConnect provides middleware that enables an application to support the OpenID Connect authentication workflow.

Key Features

  • Single sign-on and single sign-out support
  • Integration with external identity providers
  • Token validation and management
  • Configuration and mapping of user claims

How to Use

To use Microsoft.AspNetCore.Authentication.OpenIdConnect, follow these steps:

Installation

dotnet add package Microsoft.AspNetCore.Authentication.OpenIdConnect

Configuration

To configure Microsoft.AspNetCore.Authentication.OpenIdConnect, you need to add the necessary services and middleware to your application.

  1. In the Program.cs of your ASP.NET Core app, add the following code to register the OpenID Connect authentication services:

    builder.Services
        .AddAuthentication(options =>
        {
            options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
            options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
        })
        .AddCookie()
        .AddOpenIdConnect(options =>
        {
            // Configure the authentication options
            options.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
            options.Authority = "your-identity-provider";
            options.ClientId = "your-client-id";
            options.ClientSecret = "your-client-secret-from-user-secrets-or-keyvault";
            options.ResponseType = "code";
            options.Scope.Add("profile");
            options.SaveTokens = true;
        });
    

    Make sure to replace your-identity-provider, your-client-id, and your-client-secret-from-user-secrets-or-keyvault, with the appropriate values for your application and identity provider.

  2. Add the following code to enable the OpenID Connect authentication middleware:

    var app = builder.Build();
    
    app.UseAuthentication();
    

    This ensures that the authentication middleware is added to the request pipeline.

Main Types

The main types provided by Microsoft.AspNetCore.Authentication.OpenIdConnect are:

  • OpenIdConnectOptions: Represents the options for configuring the OpenID Connect authentication middleware
  • OpenIdConnectEvents: Provides event handlers for various stages of the OpenID Connect authentication workflow

For more information on these types and their usage, refer to the official documentation.

Additional Documentation

For additional documentation on using OpenID Connect authentication in ASP.NET Core, you can refer to the following resources:

Feedback & Contributing

Microsoft.AspNetCore.Authentication.OpenIdConnect 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.OpenIdConnect.

Packages Downloads
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
90
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
91
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
92
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
93
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
94
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
95
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
96
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
103
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
112
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
89
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.
90
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.
92
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.
93

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