Skip to content

jgbright/IdentityServer4.AspNetIdentity

 
 

Repository files navigation

IdentityServer4.AspNetIdentity

ASP.NET Core Identity integration support for IdentityServer4.

Add the following NuGet package to your application: IdentityServer4.AspNetIdentity

This repos contains extensions for IdentityServer to easily integate with ASP.NET Core Identity. You simply add the UseAspNetIdentitymethod when configuring IdentityServer:

// Adds IdentityServer
services.AddIdentityServer()
    .AddInMemoryScopes(Config.GetScopes())
    .AddInMemoryClients(Config.GetClients())
    .AddAspNetIdentity<ApplicationUser>();

You can find a detailed walk-through for ASP.NET Core Identity integration here.

About

ASP.NET Core Identity integration for IdentityServer4

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 94.7%
  • PowerShell 3.3%
  • Shell 1.6%
  • Other 0.4%