Microsoft.AspNetCore.Authentication.OpenIdConnect 10.0.0-preview.7.25380.108

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
36
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
39
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
44
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
35
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
36
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
38
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
39
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
108
Microsoft.AspNetCore.Authentication.AzureAD.UI
ASP.NET Core Azure Active Directory Integration provides components for easily integrating Azure Active Directory authentication within your ASP.NET Core application. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/d12868dd7c10ff0433c16b06d3b59d03c40d987a
164
Microsoft.AspNetCore.Authentication.AzureAD.UI
ASP.NET Core Azure Active Directory Integration provides components for easily integrating Azure Active Directory authentication within your ASP.NET Core application. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/68bb6fb08f8f85bb3cf08953a0d2f4a254eaccff
36
Microsoft.AspNetCore.Authentication.AzureAD.UI
ASP.NET Core Azure Active Directory Integration provides components for easily integrating Azure Active Directory authentication within your ASP.NET Core application. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/fc93e595ceffbb1e3e85532bf454e92a6a80dd6b
60
Microsoft.AspNetCore.Authentication.AzureAD.UI
ASP.NET Core Azure Active Directory Integration provides components for easily integrating Azure Active Directory authentication within your ASP.NET Core application. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ffaea14b06ea8b247fa4894b7d21ecf6da2cafbc
36
Microsoft.Identity.Web
This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). This package is specifically used for web applications, which sign-in users, and protected web APIs, which optionally call downstream web APIs.
40
Microsoft.Identity.Web
This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). This package is specifically used for web applications, which sign-in users, and protected web APIs, which optionally call downstream web APIs.
41
Microsoft.Identity.Web
This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). This package is specifically used for web applications, which sign-in users, and protected web APIs, which optionally call downstream web APIs.
51
Microsoft.Identity.Web.UI
This package enables UI for ASP.NET Core Web apps that use Microsoft.Identity.Web.
35
Microsoft.Identity.Web.UI
This package enables UI for ASP.NET Core Web apps that use Microsoft.Identity.Web.
37

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