aspnet-contrib - AspNet.Security.OpenId 10.0.1-preview.25603.33

ASP.NET Core authentication middleware for OpenID 2.0 providers.

PM> Install-Package AspNet.Security.OpenId -Version 10.0.1-preview.25603.33 -Source https://www.myget.org/F/aspnet-contrib/api/v3/index.json

Copy to clipboard

> nuget.exe install AspNet.Security.OpenId -Version 10.0.1-preview.25603.33 -Source https://www.myget.org/F/aspnet-contrib/api/v3/index.json

Copy to clipboard

> dotnet add package AspNet.Security.OpenId --version 10.0.1-preview.25603.33 --source https://www.myget.org/F/aspnet-contrib/api/v3/index.json

Copy to clipboard
<PackageReference Include="AspNet.Security.OpenId" Version="10.0.1-preview.25603.33" />
Copy to clipboard
source https://www.myget.org/F/aspnet-contrib/api/v3/index.json

nuget AspNet.Security.OpenId  ~> 10.0.1-preview.25603.33
Copy to clipboard

> choco install AspNet.Security.OpenId --version 10.0.1-preview.25603.33 --source https://www.myget.org/F/aspnet-contrib/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "aspnet-contrib" -SourceLocation "https://www.myget.org/F/aspnet-contrib/api/v2"
Install-Module -Name "AspNet.Security.OpenId" -RequiredVersion "10.0.1-preview.25603.33" -Repository "aspnet-contrib" -AllowPreRelease
Copy to clipboard

Browse the sources in this package using Visual Studio or WinDbg by configuring the following symbol server URL: https://www.myget.org/F/aspnet-contrib/api/v2/symbolpackage/


AspNet.Security.OpenId.Providers

AspNet.Security.OpenId.Providers is a collection of security middleware that you can use in your ASP.NET Core application to support OpenID 2.0 authentication providers like Steam or Wargaming. It is directly inspired by Jerrie Pelser's initiative, Owin.Security.Providers.

The latest official release can be found on NuGet and the nightly builds on MyGet.

Build status

Getting started

Adding external authentication to your application is a breeze and just requires a few lines in your Startup class:

public void ConfigureServices(IServiceCollection services)
{
    services.AddAuthentication(options => { /* Authentication options */ })
            .AddSteam()
            .AddOpenId("StackExchange", "StackExchange", options =>
            {
                options.Authority = new Uri("https://openid.stackexchange.com/");
                options.CallbackPath = "/signin-stackexchange";
            });
}

public void Configure(IApplicationBuilder app)
{
    app.UseAuthentication();
}

See the /samples directory for a complete sample using ASP.NET Core MVC and supporting multiple external providers.

Contributing

AspNet.Security.OpenId.Providers is actively maintained by:

We would love it if you could help contributing to this repository.

Security policy

Please see SECURITY.md for information about reporting security issues and bugs.

Support

Need help or wanna share your thoughts? Don't hesitate to join us on Gitter or ask your question on StackOverflow:

License

This project is licensed under the Apache License. This means that you can use, modify and distribute it freely. See https://www.apache.org/licenses/LICENSE-2.0.html for more details.

Providers

Links to the latest stable and nightly NuGet packages for each provider, as well as a link to their integration documentation are listed in the table below.

If a provider you're looking for does not exist, consider making a PR to add one.

Provider Stable Nightly Documentation
OpenId NuGet MyGet N/A
Steam NuGet MyGet Documentation
  • .NETFramework 10.0
    • AngleSharp (>= 1.3.0)
    • Microsoft.IdentityModel.Protocols (>= 8.14.0)
  • .NETFramework 10.0: 10.0.0.0

Owners

Kévin Chalet aspnet-contrib

Authors

Kévin Chalet

Project URL

https://github.com/aspnet-contrib/AspNet.Security.OpenId.Providers

License

Unknown

Tags

aspnetcore authentication openid security

Info

0 total downloads
0 downloads for version 10.0.1-preview.25603.33
Download (32.77 KB)
Download symbols (19.34 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
10.0.1-preview.25603.33 32.77 KB Wed, 03 Dec 2025 08:04:38 GMT 0
10.0.1-preview.25602.31 32.77 KB Tue, 02 Dec 2025 07:32:34 GMT 0
10.0.1-preview.25575.30 32.77 KB Tue, 25 Nov 2025 07:23:11 GMT 0
10.0.1-preview.25574.30 32.78 KB Mon, 24 Nov 2025 07:20:11 GMT 0
10.0.1-preview.25571.30 32.77 KB Fri, 21 Nov 2025 07:18:10 GMT 0
10.0.1-preview.25569.27 32.77 KB Wed, 19 Nov 2025 06:35:14 GMT 0
10.0.1-preview.25568.29 32.78 KB Tue, 18 Nov 2025 07:08:37 GMT 0
10.0.1-preview.25564.32 32.77 KB Fri, 14 Nov 2025 07:53:42 GMT 0
10.0.1-preview.25561.55 32.76 KB Tue, 11 Nov 2025 13:40:07 GMT 0
10.0.0 32.7 KB Tue, 11 Nov 2025 13:26:45 GMT 0
10.0.0-rc.2.25557.55 32.76 KB Fri, 07 Nov 2025 13:44:12 GMT 0