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

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
33
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
42
IdentityServer4
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
33
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
102
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
161
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
56
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
33
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.
32
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.
33
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.
39
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.
33
Microsoft.Identity.Web.UI
This package enables UI for ASP.NET Core Web apps that use Microsoft.Identity.Web.
35

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