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
37
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
41
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
46
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
37
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
40
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
109
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
165
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
37
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
61
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.
37
Microsoft.Identity.Web.UI
This package enables UI for ASP.NET Core Web apps that use Microsoft.Identity.Web.
39

Version Downloads Last updated
10.0.0-preview.7.25380.108 4 08/14/2025
10.0.0-preview.6.25358.103 7 07/18/2025
10.0.0-preview.5.25277.114 9 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 2 08/07/2025
9.0.7 5 07/18/2025
9.0.6 10 06/12/2025
9.0.5 12 05/15/2025
9.0.4 11 04/16/2025
9.0.3 13 03/14/2025
9.0.2 14 02/20/2025
9.0.1 14 01/23/2025
9.0.0 16 11/19/2024
9.0.0-rc.2.24474.3 18 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 22 02/14/2024
8.0.19 3 08/15/2025
8.0.18 7 07/18/2025
8.0.17 8 06/13/2025
8.0.16 11 05/15/2025
8.0.15 12 04/16/2025
8.0.14 13 03/14/2025
8.0.13 16 02/20/2025
8.0.12 17 01/24/2025
8.0.11 17 11/19/2024
8.0.10 19 10/23/2024
8.0.8 20 08/13/2024
8.0.7 21 07/13/2024
8.0.6 19 05/29/2024
8.0.5 27 05/15/2024
8.0.4 20 04/10/2024
8.0.3 20 03/15/2024
8.0.2 25 02/15/2024
8.0.1 22 02/13/2024
8.0.0 25 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 28 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 18 05/29/2024
7.0.19 20 05/16/2024
7.0.18 26 04/10/2024
7.0.17 24 03/15/2024
7.0.16 22 02/15/2024
7.0.15 24 02/13/2024
7.0.14 24 02/13/2024
7.0.13 29 02/13/2024
7.0.12 43 01/15/2024
7.0.11 22 02/13/2024
7.0.10 24 02/13/2024
7.0.9 24 01/18/2024
7.0.8 27 02/13/2024
7.0.7 24 02/13/2024
7.0.5 23 02/13/2024
7.0.4 20 02/13/2024
7.0.3 20 02/13/2024
7.0.2 20 02/13/2024
7.0.1 23 02/13/2024
7.0.0 21 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 26 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 20 10/08/2024
6.0.33 24 08/13/2024
6.0.32 22 07/13/2024
6.0.31 25 05/29/2024
6.0.30 20 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 21 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 28 02/13/2024
6.0.18 22 01/19/2024
6.0.16 30 02/13/2024
6.0.15 24 02/13/2024
6.0.14 31 03/03/2023
6.0.13 27 02/13/2024
6.0.12 21 02/13/2024
6.0.11 45 03/31/2023
6.0.10 22 02/13/2024
6.0.9 38 02/13/2024
6.0.8 22 02/13/2024
6.0.7 18 02/13/2024
6.0.6 24 02/13/2024
6.0.5 25 01/29/2024
6.0.4 22 01/18/2024
6.0.3 26 04/06/2022
6.0.2 20 02/13/2024
6.0.1 82 12/15/2021
6.0.0 37 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 24 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 25 02/09/2024
5.0.15 23 01/12/2024
5.0.14 28 02/09/2024
5.0.13 27 02/13/2024
5.0.12 49 04/14/2022
5.0.11 29 02/13/2024
5.0.10 24 02/13/2024
5.0.9 24 02/13/2024
5.0.8 44 02/13/2024
5.0.7 21 06/08/2021
5.0.6 25 05/11/2021
5.0.5 25 04/06/2021
5.0.4 34 03/11/2021
5.0.3 43 02/09/2021
5.0.2 30 01/26/2021
5.0.1 62 12/11/2020
5.0.0 21 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 25 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 19 02/13/2024
3.1.31 27 01/23/2024
3.1.30 40 02/13/2024
3.1.29 31 02/13/2024
3.1.28 24 02/13/2024
3.1.27 21 02/13/2024
3.1.26 26 02/13/2024
3.1.25 25 02/13/2024
3.1.24 23 02/13/2024
3.1.23 27 02/13/2024
3.1.22 24 02/13/2024
3.1.21 23 02/13/2024
3.1.20 25 02/13/2024
3.1.19 26 02/13/2024
3.1.18 25 02/13/2024
3.1.17 27 07/13/2021
3.1.16 25 06/08/2021
3.1.15 30 05/11/2021
3.1.14 26 04/06/2021
3.1.13 71 03/09/2021
3.1.12 29 02/11/2021
3.1.11 26 01/25/2021
3.1.10 26 11/10/2020
3.1.9 139 10/25/2020
3.1.8 22 02/13/2024
3.1.7 27 02/13/2024
3.1.6 19 02/13/2024
3.1.5 35 08/24/2020
3.1.4 21 02/13/2024
3.1.3 44 04/27/2020
3.1.2 25 02/11/2024
3.1.1 22 02/13/2024
3.1.0 113 03/23/2020
3.1.0-preview3.19555.2 25 02/13/2024
3.1.0-preview2.19528.8 27 02/13/2024
3.1.0-preview1.19508.20 43 02/13/2024
3.0.3 24 11/30/2020
3.0.2 21 02/13/2024
3.0.0 39 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 28 02/13/2024
3.0.0-preview-19075-0444 24 02/13/2024
2.3.0 14 01/24/2025
2.2.0 31 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 26 02/13/2024
2.1.2 31 10/08/2021
2.1.1 20 02/13/2024
2.1.0 27 02/17/2021
2.1.0-rc1-final 24 02/13/2024
2.1.0-preview2-final 28 02/13/2024
2.1.0-preview1-final 26 02/13/2024
2.0.4 25 02/13/2024
2.0.3 20 02/13/2024
2.0.1 22 02/13/2024
2.0.0 33 01/14/2024
2.0.0-preview2-final 23 01/05/2024
2.0.0-preview1-final 24 02/13/2024
1.1.3 26 02/13/2024
1.1.2 42 02/10/2020
1.1.1 21 02/13/2024
1.1.0 22 02/13/2024
1.1.0-preview1-final 22 02/13/2024
1.0.5 36 02/13/2024
1.0.4 22 02/13/2024
1.0.3 22 02/13/2024
1.0.2 20 02/13/2024
1.0.1 21 02/13/2024
1.0.0 26 01/31/2024
1.0.0-rc2-final 23 02/13/2024