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
60
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
61
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
62
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
63
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
64
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
65
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
66
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
74
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
75
Duende.IdentityServer
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
81
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.
60
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.
62
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.
63
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.
64

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