All Projects → aspnet-contrib → Aspnet.security.openid.providers

aspnet-contrib / Aspnet.security.openid.providers

Licence: apache-2.0
OpenID 2.0 authentication middleware for ASP.NET Core

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to Aspnet.security.openid.providers

Aspnet5identityserverangularimplicitflow
OpenID Connect Code / Implicit Flow with Angular and ASP.NET Core 5 IdentityServer4
Stars: ✭ 670 (+526.17%)
Mutual labels:  aspnetcore, openid
AspNetCoreMvcAngular
ASP.NET Core MVC with angular in MVC View OpenID Connect Hybrid Flow
Stars: ✭ 54 (-49.53%)
Mutual labels:  aspnetcore, openid
angular-auth-oidc-sample-google-openid
Angular oidc client with google Identity OpenID
Stars: ✭ 23 (-78.5%)
Mutual labels:  aspnetcore, openid
Jpproject.identityserver4.adminui
🔧 ASP.NET Core 3 & Angular 8 Administration Panel for 💞IdentityServer4 and ASP.NET Core Identity
Stars: ✭ 717 (+570.09%)
Mutual labels:  aspnetcore, openid
Aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
Stars: ✭ 10,061 (+9302.8%)
Mutual labels:  aspnetcore
Atles
A forum software built with ASP.NET Core Blazor WebAssembly
Stars: ✭ 88 (-17.76%)
Mutual labels:  aspnetcore
Masq
Mountable Rails engine that provides OpenID server/identity provider functionality
Stars: ✭ 84 (-21.5%)
Mutual labels:  openid
Migrator.ef6
.NET Core CLI tool to enable EF6 migrations in an Asp.Net Core app.
Stars: ✭ 81 (-24.3%)
Mutual labels:  aspnetcore
Elect
The collection of utilities, best practice and fluent method for .NET Core
Stars: ✭ 107 (+0%)
Mutual labels:  aspnetcore
Aspnet Core React Registration Login Example
React + ASP.NET Core 2.0 - User Registration and Login Example & Tutorial
Stars: ✭ 102 (-4.67%)
Mutual labels:  aspnetcore
Signalrsimplechat
.NET 5 - ASP.NET Core 5 SignalR Simple Chat
Stars: ✭ 95 (-11.21%)
Mutual labels:  aspnetcore
Aspnetcore Ddd
Full ASP.NET Core 3.1 LTS application with DDD, CQRS and Event Sourcing
Stars: ✭ 88 (-17.76%)
Mutual labels:  aspnetcore
Quiz
Example real time quiz application with .NET Core, React, DDD, Event Sourcing, Docker and built-in infrastructure for CI/CD with k8s, jenkins and helm
Stars: ✭ 100 (-6.54%)
Mutual labels:  aspnetcore
Aspnetcorewindowsauth
Local and Windows Authentication, ASP.NET Core MVC, IdentityServer4
Stars: ✭ 87 (-18.69%)
Mutual labels:  aspnetcore
Dotnet Unpkg
Pure .NET front-end HTML package management using unpkg.com as a source
Stars: ✭ 103 (-3.74%)
Mutual labels:  aspnetcore
Aspnetcore.docs
Documentation for ASP.NET Core
Stars: ✭ 9,940 (+9189.72%)
Mutual labels:  aspnetcore
Module Shop Mini Program
一个基于 .NET Core构建的简单、跨平台、模块化的商城系统
Stars: ✭ 89 (-16.82%)
Mutual labels:  aspnetcore
Dotnettency
Mutlitenancy for dotnet applications
Stars: ✭ 100 (-6.54%)
Mutual labels:  aspnetcore
Docker Series
Docker Series about containerizing ASP.NET Core app with MySQL..
Stars: ✭ 88 (-17.76%)
Mutual labels:  aspnetcore
Komple Web Gelistirme Dersleri
Sıfırdan ileri seviyeye 'Web Geliştirme': Html, Css, Sass, Flexbox, Javascript, Bootstrap,JQuery,Asp.Net Mvc ve Core Mvc
Stars: ✭ 86 (-19.63%)
Mutual labels:  aspnetcore

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, Wargaming or Orange. 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.

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].