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

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
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. 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.
13
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. 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.
14
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. 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.
15
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/c3acdcac86dad91c3d3fbc3b93ecc6b7ba494bdc
14
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/c5f85986e62dabfc0b7f2f2a45dc7c22e8ac815f
14
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/e3187077455f953200e3c930430808a30f48b82e
14
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/3eeb12e106b9e913c3a4dec1a7d16da7b74149eb
14
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/96103c264e5e8f0485d07018ba27b78cd8227dd2
15
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/ab1f1c636afa3a6607f2d67bc387b586596d1d38
14
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/c0ae1d179dba6f3acd0e55be55718c97c9028698
14
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.
14
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.
16
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.
18
Microsoft.Identity.Web.TokenAcquisition
Implementation for higher level API for confidential client applications (ASP.NET Core and SDK/.NET).
14

Version Downloads Last updated
10.0.0-preview.2.25164.1 4 30.03.2025
10.0.0-preview.1.25120.3 0 25.02.2025
9.0.3 1 31.03.2025
9.0.2 2 23.02.2025
9.0.1 4 24.02.2025
9.0.0 0 12.11.2024
9.0.0-rc.2.24474.3 8 28.10.2024
9.0.0-rc.1.24452.1 10 22.09.2024
9.0.0-preview.7.24406.2 0 13.08.2024
9.0.0-preview.6.24328.4 8 22.09.2024
9.0.0-preview.5.24306.11 0 11.06.2024
9.0.0-preview.4.24267.6 0 21.05.2024
9.0.0-preview.3.24172.13 9 23.10.2024
9.0.0-preview.2.24128.4 10 22.09.2024
9.0.0-preview.1.24081.5 0 13.02.2024
8.0.14 4 31.03.2025
8.0.13 4 24.02.2025
8.0.12 4 24.02.2025
8.0.11 0 12.11.2024
8.0.10 10 23.10.2024
8.0.8 9 23.10.2024
8.0.7 10 20.07.2024
8.0.6 9 22.09.2024
8.0.5 8 23.10.2024
8.0.4 10 22.09.2024
8.0.3 2 25.01.2025
8.0.2 9 23.10.2024
8.0.1 8 22.09.2024
8.0.0 10 05.04.2024
8.0.0-rc.2.23480.2 0 10.10.2023
8.0.0-rc.1.23421.29 9 22.09.2024
8.0.0-preview.7.23375.9 0 08.08.2023
8.0.0-preview.6.23329.11 8 22.09.2024
8.0.0-preview.5.23302.2 0 13.06.2023
8.0.0-preview.4.23260.4 0 16.05.2023
8.0.0-preview.3.23177.8 0 11.04.2023
8.0.0-preview.2.23153.2 9 22.09.2024
8.0.0-preview.1.23112.2 0 21.02.2023
7.0.20 0 28.05.2024
7.0.19 0 14.05.2024
7.0.18 8 22.09.2024
7.0.17 9 22.09.2024
7.0.16 8 22.09.2024
7.0.15 0 09.01.2024
7.0.14 0 14.11.2023
7.0.13 8 22.09.2024
7.0.12 0 10.10.2023
7.0.11 9 22.09.2024
7.0.10 8 22.09.2024
7.0.9 10 22.09.2024
7.0.8 9 22.09.2024
7.0.7 0 13.06.2023
7.0.5 9 22.09.2024
7.0.4 9 22.09.2024
7.0.3 9 23.10.2024
7.0.2 0 10.01.2023
7.0.1 15 04.03.2024
7.0.0 0 07.11.2022
7.0.0-rc.2.22476.2 0 11.10.2022
7.0.0-rc.1.22427.2 9 22.09.2024
7.0.0-preview.7.22376.6 10 22.09.2024
7.0.0-preview.6.22330.3 9 23.10.2024
7.0.0-preview.5.22303.8 9 22.09.2024
7.0.0-preview.4.22251.1 8 22.09.2024
7.0.0-preview.3.22178.4 10 22.09.2024
7.0.0-preview.2.22153.2 8 22.09.2024
7.0.0-preview.1.22109.13 0 17.02.2022
6.0.36 2 25.01.2025
6.0.35 0 08.10.2024
6.0.33 0 13.08.2024
6.0.32 9 23.10.2024
6.0.31 15 22.09.2024
6.0.30 0 14.05.2024
6.0.29 8 22.09.2024
6.0.28 9 23.10.2024
6.0.27 10 22.09.2024
6.0.26 9 23.10.2024
6.0.25 0 14.11.2023
6.0.24 12 22.09.2024
6.0.23 0 10.10.2023
6.0.22 0 12.09.2023
6.0.21 9 22.09.2024
6.0.20 0 11.07.2023
6.0.19 0 22.06.2023
6.0.18 9 22.09.2024
6.0.16 0 11.04.2023
6.0.15 0 14.03.2023
6.0.14 9 06.03.2024
6.0.13 0 10.01.2023
6.0.12 10 06.05.2024
6.0.11 10 22.09.2024
6.0.10 0 11.10.2022
6.0.9 9 22.09.2024
6.0.8 10 22.09.2024
6.0.7 1 03.03.2025
6.0.6 8 22.09.2024
6.0.5 0 10.05.2022
6.0.4 10 22.09.2024
6.0.3 9 22.09.2024
6.0.2 8 22.09.2024
6.0.1 9 22.09.2024
6.0.0 1 03.03.2025
6.0.0-rc.2.21480.10 0 12.10.2021
6.0.0-rc.1.21452.15 0 14.09.2021
6.0.0-preview.7.21378.6 8 22.09.2024
6.0.0-preview.6.21355.2 11 22.09.2024
6.0.0-preview.5.21301.17 10 22.09.2024
6.0.0-preview.4.21253.5 2 24.01.2025
6.0.0-preview.3.21201.13 13 22.09.2024
6.0.0-preview.2.21154.6 0 11.03.2021
6.0.0-preview.1.21103.6 9 22.09.2024
5.0.17 9 22.09.2024
5.0.16 0 11.04.2022
5.0.15 10 22.09.2024
5.0.14 9 22.09.2024
5.0.13 8 22.09.2024
5.0.12 2 25.01.2025
5.0.11 10 22.09.2024
5.0.10 8 23.10.2024
5.0.9 10 22.09.2024
5.0.8 10 22.09.2024
5.0.7 0 08.06.2021
5.0.6 8 22.09.2024
5.0.5 9 22.09.2024
5.0.4 9 22.09.2024
5.0.3 9 22.09.2024
5.0.2 0 12.01.2021
5.0.1 8 22.09.2024
5.0.0 13 17.03.2024
5.0.0-rc.2.20475.17 9 22.09.2024
5.0.0-rc.1.20451.17 0 14.09.2020
5.0.0-preview.8.20414.8 0 25.08.2020
5.0.0-preview.7.20365.19 9 22.09.2024
5.0.0-preview.6.20312.15 0 25.06.2020
5.0.0-preview.5.20279.2 0 10.06.2020
5.0.0-preview.4.20257.10 9 22.09.2024
5.0.0-preview.3.20215.14 12 22.09.2024
5.0.0-preview.2.20167.3 10 22.09.2024
5.0.0-preview.1.20124.5 9 22.09.2024
3.1.32 2 25.01.2025
3.1.31 8 22.09.2024
3.1.30 8 23.10.2024
3.1.29 7 23.10.2024
3.1.28 0 09.08.2022
3.1.27 8 23.10.2024
3.1.26 9 22.09.2024
3.1.25 0 10.05.2022
3.1.24 0 11.04.2022
3.1.23 9 01.10.2024
3.1.22 9 22.09.2024
3.1.21 9 22.09.2024
3.1.20 10 01.10.2024
3.1.19 8 01.10.2024
3.1.18 10 22.09.2024
3.1.17 9 22.09.2024
3.1.16 10 01.10.2024
3.1.15 16 01.10.2024
3.1.14 9 01.10.2024
3.1.13 9 22.09.2024
3.1.12 9 01.10.2024
3.1.11 8 01.10.2024
3.1.10 10 22.09.2024
3.1.9 9 22.09.2024
3.1.8 9 22.09.2024
3.1.7 8 01.10.2024
3.1.6 8 01.10.2024
3.1.5 8 22.09.2024
3.1.4 10 01.10.2024
3.1.3 8 22.09.2024
3.1.2 8 01.10.2024
3.1.1 9 01.10.2024
3.1.0 10 01.10.2024
3.1.0-preview3.19555.2 9 01.10.2024
3.1.0-preview2.19528.8 11 01.10.2024
3.1.0-preview1.19508.20 11 22.09.2024
3.0.3 8 01.10.2024
3.0.2 11 01.10.2024
3.0.0 10 27.08.2024
3.0.0-rc1.19457.4 8 01.10.2024
3.0.0-preview9.19424.4 10 01.10.2024
3.0.0-preview8.19405.7 7 01.10.2024
3.0.0-preview7.19365.7 9 22.09.2024
3.0.0-preview6.19307.2 10 22.09.2024
3.0.0-preview5-19227-01 8 22.09.2024
3.0.0-preview4-19216-03 8 01.10.2024
3.0.0-preview3-19153-02 9 01.10.2024
3.0.0-preview-19075-0444 10 01.10.2024
2.3.0 0 14.01.2025
2.2.0 12 13.02.2024
2.2.0-preview3-35497 9 22.09.2024
2.2.0-preview2-35157 8 22.09.2024
2.2.0-preview1-35029 9 01.10.2024
2.1.2 8 01.10.2024
2.1.1 8 22.09.2024
2.1.0 10 22.09.2024
2.1.0-rc1-final 11 01.10.2024
2.1.0-preview2-final 9 01.10.2024
2.1.0-preview1-final 10 22.09.2024
2.0.4 10 01.10.2024
2.0.3 8 22.09.2024
2.0.1 9 22.09.2024
2.0.0 10 22.09.2024
2.0.0-preview2-final 9 01.10.2024
2.0.0-preview1-final 8 01.10.2024
1.1.3 8 01.10.2024
1.1.2 10 01.10.2024
1.1.1 8 22.09.2024
1.1.0 9 22.09.2024
1.1.0-preview1-final 10 01.10.2024
1.0.5 9 01.10.2024
1.0.4 9 22.09.2024
1.0.3 11 01.10.2024
1.0.2 8 22.09.2024
1.0.1 8 01.10.2024
1.0.0 8 22.09.2024
1.0.0-rc2-final 8 01.10.2024