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

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.Authentication.OpenIdConnect.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.AspNetCore.Authentication.OpenIdConnect --version 10.0.0-preview.1.25120.3
                    
NuGet\Install-Package Microsoft.AspNetCore.Authentication.OpenIdConnect -Version 10.0.0-preview.1.25120.3
                    
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.1.25120.3" />
                    
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.1.25120.3" />
                    
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.1.25120.3
                    
#r "nuget: Microsoft.AspNetCore.Authentication.OpenIdConnect, 10.0.0-preview.1.25120.3"
                    
#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.1.25120.3&prerelease
                    
Install Microsoft.AspNetCore.Authentication.OpenIdConnect as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Authentication.OpenIdConnect&version=10.0.0-preview.1.25120.3&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 (490)

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 (126)

Showing the top 20 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.
dotnetcore/CAP
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern
kurrent-io/EventStore
EventStoreDB, the event-native database. Designed for Event Sourcing, Event-Driven, and Microservices architectures
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
dotnet/aspire
Tools, templates, and packages to accelerate building observable, production-ready apps
simplcommerce/SimplCommerce
A simple, cross platform, modulith ecommerce system built on .NET
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
vietnam-devs/coolstore-microservices
A full-stack .NET microservices build on Dapr and Tye
Squidex/squidex
Headless CMS and Content Managment Hub
MicrosoftLearning/AZ-204-DevelopingSolutionsforMicrosoftAzure
AZ-204: Developing solutions for Microsoft Azure
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 9 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 19, React 19, Vue 3.5, BFF with YARP, NextJs 15, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, EF Core, OpenTelemetry, SignalR, Background Services, Health Checks, Rate Limiting, Clouds (Azure, AWS, GCP), ..
oqtane/oqtane.framework
CMS & Application Framework for Blazor & .NET MAUI
asynkron/protoactor-dotnet
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
ErsatzTV/ErsatzTV
Stream custom live channels using your own media
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
DuendeSoftware/products
The most flexible and standards-compliant OpenID Connect and OAuth 2.x framework for ASP.NET Core
Version Downloads Last updated
10.0.0-preview.2.25164.1 870 3/18/2025
10.0.0-preview.1.25120.3 960 2/25/2025
9.0.4 462 4/8/2025
9.0.3 236,122 3/11/2025
9.0.2 400,994 2/11/2025
9.0.1 495,330 1/14/2025
9.0.0 3,682,778 11/12/2024
9.0.0-rc.2.24474.3 179,921 10/8/2024
9.0.0-rc.1.24452.1 80,952 9/10/2024
9.0.0-preview.7.24406.2 2,228 8/13/2024
9.0.0-preview.6.24328.4 119,708 7/9/2024
9.0.0-preview.5.24306.11 1,003 6/11/2024
9.0.0-preview.4.24267.6 8,088 5/21/2024
9.0.0-preview.3.24172.13 62,925 4/11/2024
9.0.0-preview.2.24128.4 21,321 3/12/2024
9.0.0-preview.1.24081.5 22,655 2/13/2024
8.0.15 344 4/8/2025
8.0.14 206,706 3/11/2025
8.0.13 349,445 2/11/2025
8.0.12 574,075 1/14/2025
8.0.11 1,961,074 11/12/2024
8.0.10 2,388,500 10/8/2024
8.0.8 3,028,506 8/13/2024
8.0.7 1,780,941 7/9/2024
8.0.6 2,430,102 5/28/2024
8.0.5 875,181 5/14/2024
8.0.4 3,115,378 4/9/2024
8.0.3 3,888,718 3/12/2024
8.0.2 1,631,215 2/13/2024
8.0.1 3,582,816 1/9/2024
8.0.0 29,958,758 11/14/2023
8.0.0-rc.2.23480.2 514,263 10/10/2023
8.0.0-rc.1.23421.29 87,714 9/12/2023
8.0.0-preview.7.23375.9 359,894 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 227,881 5/16/2023
8.0.0-preview.3.23177.8 3,658 4/11/2023
8.0.0-preview.2.23153.2 89,348 3/14/2023
8.0.0-preview.1.23112.2 51,945 2/21/2023
7.0.20 148,022 5/28/2024
7.0.19 25,419 5/14/2024
7.0.18 104,488 4/9/2024
7.0.17 62,160 3/12/2024
7.0.16 156,507 2/13/2024
7.0.15 529,331 1/9/2024
7.0.14 1,297,674 11/14/2023
7.0.13 586,516 10/24/2023
7.0.12 450,448 10/10/2023
7.0.11 686,242 9/12/2023
7.0.10 1,202,227 8/8/2023
7.0.9 792,095 7/11/2023
7.0.8 582,695 6/22/2023
7.0.7 250,027 6/13/2023
7.0.5 2,188,722 4/11/2023
7.0.4 721,334 3/14/2023
7.0.3 740,617 2/14/2023
7.0.2 1,067,889 1/10/2023
7.0.1 9,276,623 12/13/2022
7.0.0 3,890,519 11/7/2022
7.0.0-rc.2.22476.2 19,710 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 276,477 7/12/2022
7.0.0-preview.5.22303.8 2,860 6/14/2022
7.0.0-preview.4.22251.1 2,114 5/10/2022
7.0.0-preview.3.22178.4 1,374 4/13/2022
7.0.0-preview.2.22153.2 7,925 3/14/2022
7.0.0-preview.1.22109.13 1,158 2/17/2022
6.0.36 342,674 11/12/2024
6.0.35 263,207 10/8/2024
6.0.33 401,765 8/13/2024
6.0.32 237,681 7/9/2024
6.0.31 357,671 5/28/2024
6.0.30 123,895 5/14/2024
6.0.29 801,870 4/9/2024
6.0.28 369,495 3/12/2024
6.0.27 478,894 2/13/2024
6.0.26 881,610 1/9/2024
6.0.25 1,148,247 11/14/2023
6.0.24 354,165 10/24/2023
6.0.23 251,512 10/10/2023
6.0.22 476,124 9/12/2023
6.0.21 702,817 8/8/2023
6.0.20 610,225 7/11/2023
6.0.19 521,170 6/22/2023
6.0.18 295,214 6/13/2023
6.0.16 1,933,573 4/11/2023
6.0.15 999,801 3/14/2023
6.0.14 1,036,438 2/14/2023
6.0.13 1,628,266 1/10/2023
6.0.12 9,944,929 12/13/2022
6.0.11 2,520,427 11/7/2022
6.0.10 2,572,610 10/11/2022
6.0.9 2,548,462 9/13/2022
6.0.8 2,674,246 8/9/2022
6.0.7 2,354,967 7/12/2022
6.0.6 1,860,243 6/14/2022
6.0.5 3,098,936 5/10/2022
6.0.4 1,760,555 4/11/2022
6.0.3 2,391,086 3/8/2022
6.0.2 1,624,281 2/8/2022
6.0.1 3,404,303 12/14/2021
6.0.0 21,996,290 11/8/2021
6.0.0-rc.2.21480.10 35,628 10/12/2021
6.0.0-rc.1.21452.15 20,801 9/14/2021
6.0.0-preview.7.21378.6 17,861 8/10/2021
6.0.0-preview.6.21355.2 7,075 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,097 4/8/2021
6.0.0-preview.2.21154.6 1,579 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,445 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 566,658 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 96,687 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 204,744 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 276,404 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 416,491 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 23,466,119 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 1,065,686 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 1,106,679 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 1,128,681 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 804,273 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 969,138 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 841,129 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 1,141,646 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 983,812 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 773,862 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 980,140 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 1,834,869 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 16,442,416 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 80,330 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 625,150 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,226,268 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,128 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,631 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,232 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,512 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,393 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,211 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,708 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 368,568 12/13/2022
3.1.31 43,231 11/8/2022
3.1.30 54,121 10/11/2022
3.1.29 60,308 9/13/2022
3.1.28 57,952 8/9/2022
3.1.27 64,687 7/12/2022
3.1.26 63,994 6/14/2022
3.1.25 99,319 5/10/2022
3.1.24 80,856 4/11/2022
3.1.23 3,240,574 3/8/2022
3.1.22 727,090 12/14/2021
3.1.21 237,814 11/7/2021
3.1.20 263,412 10/11/2021
3.1.19 245,875 9/14/2021
3.1.18 2,362,798 8/10/2021
3.1.17 388,550 7/13/2021
3.1.16 534,291 6/8/2021
3.1.15 349,951 5/11/2021
3.1.14 558,102 4/6/2021
3.1.13 719,030 3/9/2021
3.1.12 514,826 2/9/2021
3.1.11 583,683 1/12/2021
3.1.10 1,397,051 11/9/2020
3.1.9 2,071,880 10/13/2020
3.1.8 5,568,264 9/8/2020
3.1.7 1,412,386 8/11/2020
3.1.6 1,302,214 7/14/2020
3.1.5 1,881,560 6/9/2020
3.1.4 1,547,874 5/12/2020
3.1.3 2,684,354 3/24/2020
3.1.2 1,956,240 2/18/2020
3.1.1 5,226,520 1/14/2020
3.1.0 38,062,307 12/3/2019
3.1.0-preview3.19555.2 5,766 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 1,155 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 1,524 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 1,159,400 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 55,285 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 4,053,899 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 15,562 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 2,272,547 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 9,261 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 32,113 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 7,067 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 11,549 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 4,529 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 115,296 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 4,481 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
2.3.0 2,545 1/14/2025
2.2.0 15,954,039 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 68,415 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 13,418 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 9,180 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.2 14,566,369 8/21/2018
2.1.1 11,168,011 6/18/2018
2.1.0 12,468,176 5/29/2018
2.1.0-rc1-final 22,910 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 30,262 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 30,216 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.4 3,979,294 5/7/2018 2.0.4 is deprecated because it is no longer maintained.
2.0.3 7,897,302 3/13/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.1 6,601,234 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 6,767,630 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 57,138 6/27/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 25,452 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.3 221,760 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 389,923 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 227,680 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 190,148 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 5,889 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.5 7,703 11/14/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 4,908 9/20/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 8,542 5/9/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 70,895 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 19,159 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 238,509 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 12,300 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.