Mid
ASP.NET Core
ASP.NET Core
External logins (OAuth, OpenID Connect)?
Use built-in providers:
services.AddAuthentication()
.AddGoogle(options => {
options.ClientId = "...";
options.ClientSecret = "...";
});
Also supports:
- Microsoft
- OpenID Connect
- Azure AD
Use RemoteAuthenticationHandler<T> or Identity scaffolding.
Share this Q&A
Share preview image: https://www.toolliyo.com/images/toolliyo-logo.png