Support ASP.NET Core 2.0 (Auth 2.0)
See original GitHub issueIt looks like instead of registering auth middleware per scheme, there’s just one auth middleware and different auth schemes are added by calling services.AddScheme<TOptions, THandler>
.
Issue Analytics
- State:
- Created 6 years ago
- Comments:12 (8 by maintainers)
Top Results From Across the Web
Secure Your ASP.NET Core App with OAuth 2.0
Set up ASP.NET OAuth 2.0 Authentication Middleware ... OAuth 2.0 is a popular security protocol used by many organizations to protect sensitive ...
Read more >Make secure .NET Microservices and Web Applications
NET Core for identifying an application's users is the ASP. ... NET Core supports several options for using OAuth 2.0 and OpenID Connect....
Read more >What is OAuth? Secure Your ASP.NET Core App with ...
OAuth 2.0 is a good and useful approach when you wish to refrain from User Authentication and managing their data. · Basically your...
Read more >How to implement OAuth2.0 Authentication token in ASP. ...
In .net 6, going to program.cs and adding these code: using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.IdentityModel.
Read more >Secure Applications with OAuth2 and OpenID Connect in ...
IdentityServer4 is a popular OpenID Connect and OAuth 2.0 framework for ASP.NET Core. It provides authentication as a service and can be used...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Well, it’s indeed the most visible change, but it’s not the only one: there’s a bunch of API signatures changes and things that are not possible at all in the new world for which we’ll have to find different approaches (e.g authentication middleware selection via pipeline branching: https://github.com/openiddict/openiddict-samples/blob/master/samples/CodeFlow/AuthorizationServer/Startup.cs#L103-L158).
There’s nothing complicated, just time that must be spent to port the validation/introspection middleware, ASOS and OpenIddict 😄
The new authentication stack - that I helped design - is so different than the previous one that it will require massive changes in both ASOS and OpenIddict. I’ll probably have something ready for 2.0-preview2.
https://github.com/OrchardCMS/Orchard2/issues/730#issuecomment-298250282