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

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.Authentication.OpenIdConnect.
dotnet add package Microsoft.AspNetCore.Authentication.OpenIdConnect --version 10.0.0-preview.2.25164.1
                    
NuGet\Install-Package Microsoft.AspNetCore.Authentication.OpenIdConnect -Version 10.0.0-preview.2.25164.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.0-preview.2.25164.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.0-preview.2.25164.1" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.AspNetCore.Authentication.OpenIdConnect --version 10.0.0-preview.2.25164.1
                    
#r "nuget: Microsoft.AspNetCore.Authentication.OpenIdConnect, 10.0.0-preview.2.25164.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Microsoft.AspNetCore.Authentication.OpenIdConnect&version=10.0.0-preview.2.25164.1&prerelease
                    
Install Microsoft.AspNetCore.Authentication.OpenIdConnect as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Authentication.OpenIdConnect&version=10.0.0-preview.2.25164.1&prerelease
                    
Install Microsoft.AspNetCore.Authentication.OpenIdConnect as a Cake Tool

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.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (492)

Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.Authentication.OpenIdConnect:

Package Downloads
Microsoft.Identity.Web.TokenAcquisition

Implementation for higher level API for confidential client applications (ASP.NET Core and SDK/.NET).

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.

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.

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

Duende.IdentityServer

OpenID Connect and OAuth 2.0 Framework for ASP.NET Core

GitHub repositories (121)

Showing the top 5 popular GitHub repositories that depend on Microsoft.AspNetCore.Authentication.OpenIdConnect:

Repository Stars
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
dotnet/eShop
A reference .NET application implementing an eCommerce site
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
Version Downloads Last updated
10.0.0-preview.2.25164.1 643 17 days ago
10.0.0-preview.1.25120.3 952 a month ago
9.0.3 188,921 24 days ago
9.0.2 384,666 2 months ago
9.0.1 481,339 3 months ago
9.0.0 3,517,064 5 months ago
9.0.0-rc.2.24474.3 176,279 6 months ago
9.0.0-rc.1.24452.1 78,690 7 months ago
9.0.0-preview.7.24406.2 2,226 8 months ago
9.0.0-preview.6.24328.4 117,273 9 months ago
9.0.0-preview.5.24306.11 1,003 10 months ago
9.0.0-preview.4.24267.6 8,083 5/21/2024
9.0.0-preview.3.24172.13 62,897 4/11/2024
9.0.0-preview.2.24128.4 21,289 3/12/2024
9.0.0-preview.1.24081.5 22,647 2/13/2024
8.0.14 167,177 24 days ago
8.0.13 330,407 2 months ago
8.0.12 554,223 3 months ago
8.0.11 1,909,085 5 months ago
8.0.10 2,340,709 6 months ago
8.0.8 2,993,826 8 months ago
8.0.7 1,760,339 9 months ago
8.0.6 2,411,227 5/28/2024
8.0.5 870,775 5/14/2024
8.0.4 3,080,959 4/9/2024
8.0.3 3,852,883 3/12/2024
8.0.2 1,621,745 2/13/2024
8.0.1 3,543,612 1/9/2024
8.0.0 29,614,053 11/14/2023
8.0.0-rc.2.23480.2 510,250 10/10/2023
8.0.0-rc.1.23421.29 87,083 9/12/2023
8.0.0-preview.7.23375.9 356,273 8/8/2023
8.0.0-preview.6.23329.11 8,004 7/11/2023
8.0.0-preview.5.23302.2 3,859 6/13/2023
8.0.0-preview.4.23260.4 226,347 5/16/2023
8.0.0-preview.3.23177.8 3,656 4/11/2023
8.0.0-preview.2.23153.2 89,345 3/14/2023
8.0.0-preview.1.23112.2 51,945 2/21/2023
7.0.20 145,805 5/28/2024
7.0.19 25,034 5/14/2024
7.0.18 104,093 4/9/2024
7.0.17 61,982 3/12/2024
7.0.16 156,122 2/13/2024
7.0.15 520,440 1/9/2024
7.0.14 1,289,610 11/14/2023
7.0.13 584,774 10/24/2023
7.0.12 450,010 10/10/2023
7.0.11 684,924 9/12/2023
7.0.10 1,200,854 8/8/2023
7.0.9 790,301 7/11/2023
7.0.8 581,728 6/22/2023
7.0.7 249,616 6/13/2023
7.0.5 2,184,449 4/11/2023
7.0.4 720,443 3/14/2023
7.0.3 739,346 2/14/2023
7.0.2 1,067,033 1/10/2023
7.0.1 9,255,779 12/13/2022
7.0.0 3,866,639 11/7/2022
7.0.0-rc.2.22476.2 19,706 10/11/2022
7.0.0-rc.1.22427.2 71,297 9/14/2022
7.0.0-preview.7.22376.6 4,085 8/9/2022
7.0.0-preview.6.22330.3 274,499 7/12/2022
7.0.0-preview.5.22303.8 2,858 6/14/2022
7.0.0-preview.4.22251.1 2,114 5/10/2022
7.0.0-preview.3.22178.4 1,373 4/13/2022
7.0.0-preview.2.22153.2 7,879 3/14/2022
7.0.0-preview.1.22109.13 1,158 2/17/2022
6.0.36 326,006 5 months ago
6.0.35 259,228 6 months ago
6.0.33 396,691 8 months ago
6.0.32 234,251 9 months ago
6.0.31 355,069 5/28/2024
6.0.30 122,787 5/14/2024
6.0.29 793,887 4/9/2024
6.0.28 366,987 3/12/2024
6.0.27 475,888 2/13/2024
6.0.26 875,361 1/9/2024
6.0.25 1,143,932 11/14/2023
6.0.24 352,989 10/24/2023
6.0.23 250,619 10/10/2023
6.0.22 474,598 9/12/2023
6.0.21 700,895 8/8/2023
6.0.20 608,889 7/11/2023
6.0.19 519,054 6/22/2023
6.0.18 294,382 6/13/2023
6.0.16 1,927,673 4/11/2023
6.0.15 997,731 3/14/2023
6.0.14 1,034,751 2/14/2023
6.0.13 1,624,978 1/10/2023
6.0.12 9,920,495 12/13/2022
6.0.11 2,510,712 11/7/2022
6.0.10 2,569,619 10/11/2022
6.0.9 2,545,864 9/13/2022
6.0.8 2,671,203 8/9/2022
6.0.7 2,351,122 7/12/2022
6.0.6 1,857,911 6/14/2022
6.0.5 3,095,186 5/10/2022
6.0.4 1,758,833 4/11/2022
6.0.3 2,388,322 3/8/2022
6.0.2 1,621,955 2/8/2022
6.0.1 3,400,855 12/14/2021
6.0.0 21,897,359 11/8/2021
6.0.0-rc.2.21480.10 35,621 10/12/2021
6.0.0-rc.1.21452.15 20,794 9/14/2021
6.0.0-preview.7.21378.6 17,847 8/10/2021
6.0.0-preview.6.21355.2 7,068 7/14/2021
6.0.0-preview.5.21301.17 4,849 6/15/2021
6.0.0-preview.4.21253.5 7,563 5/24/2021
6.0.0-preview.3.21201.13 8,090 4/8/2021
6.0.0-preview.2.21154.6 1,577 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 3,443 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 565,460 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 96,604 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 204,221 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 275,915 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 416,134 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 23,428,157 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 1,064,875 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 1,105,939 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 1,127,943 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 803,845 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 968,430 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 840,732 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 1,140,080 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 982,860 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 773,374 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 979,723 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 1,833,772 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 16,417,288 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 80,204 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 622,483 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 4,097,914 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 13,125 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 17,620 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 2,230 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 1,509 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 1,389 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 1,208 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 1,706 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 366,847 12/13/2022
3.1.31 43,021 11/8/2022
3.1.30 54,009 10/11/2022
3.1.29 60,165 9/13/2022
3.1.28 57,855 8/9/2022
3.1.27 64,530 7/12/2022
3.1.26 63,890 6/14/2022
3.1.25 99,222 5/10/2022
3.1.24 80,599 4/11/2022
3.1.23 3,230,563 3/8/2022
3.1.22 726,461 12/14/2021
3.1.21 237,632 11/7/2021
3.1.20 263,293 10/11/2021
3.1.19 245,544 9/14/2021
3.1.18 2,360,162 8/10/2021
3.1.17 388,271 7/13/2021
3.1.16 533,953 6/8/2021
3.1.15 349,507 5/11/2021
3.1.14 557,759 4/6/2021
3.1.13 718,402 3/9/2021
3.1.12 514,472 2/9/2021
3.1.11 583,178 1/12/2021
3.1.10 1,396,143 11/9/2020
3.1.9 2,069,528 10/13/2020
3.1.8 5,564,849 9/8/2020
3.1.7 1,411,291 8/11/2020
3.1.6 1,301,495 7/14/2020
3.1.5 1,880,595 6/9/2020
3.1.4 1,547,097 5/12/2020
3.1.3 2,682,779 3/24/2020
3.1.2 1,954,310 2/18/2020
3.1.1 5,221,636 1/14/2020
3.1.0 37,989,345 12/3/2019
3.1.0-preview3.19555.2 5,759 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 1,152 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 1,521 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 1,152,914 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 55,211 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 4,050,496 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 15,554 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 2,271,076 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 9,258 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 32,108 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 7,063 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 11,531 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 4,526 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 115,291 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 4,474 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
2.3.0 2,260 3 months ago
2.2.0 15,939,435 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 68,404 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 13,412 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 9,173 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.2 14,561,827 8/21/2018
2.1.1 11,145,730 6/18/2018
2.1.0 12,454,094 5/29/2018
2.1.0-rc1-final 22,901 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 30,254 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 30,206 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.4 3,976,428 5/7/2018 2.0.4 is deprecated because it is no longer maintained.
2.0.3 7,894,516 3/13/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.1 6,596,544 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 6,764,219 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 57,113 6/27/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 25,447 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.3 221,546 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 389,867 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 227,601 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 190,127 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 5,882 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.5 7,697 11/14/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 4,901 9/20/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 8,535 5/9/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 70,857 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 19,152 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 237,919 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 12,293 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.