zeroframework/Services/Identity/ZeroFramework.IdentityServer.API
2023-12-05 17:22:48 +08:00
..
.config 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
AutoMapper 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Certificates 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Constants 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Controllers 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Extensions 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
IdentityStores 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Infrastructure 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Migrations 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Models 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Properties 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Resources 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Services 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Tenants 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Validations/Tenants 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Views 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
wwwroot 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
appsettings.Development.json 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
appsettings.json 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
appsettings.Production.json 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
nlog.config 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Program.cs 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
README.md 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
Startup.cs 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00
ZeroFramework.IdentityServer.API.csproj 零度框架 8.0 版本 2023-12-05 17:22:48 +08:00

Identity Server Document

https://identitymodel.readthedocs.io

https://Duende.IdentityServer.readthedocs.io

https://github.com/IdentityServer/Duende.IdentityServer.Quickstart.UI

https://github.com/domaindrivendev/Swashbuckle.AspNetCore/tree/master/test/WebSites/OAuth2Integration

https://github.com/skoruba/Duende.IdentityServer.Admin

https://github.com/dotnet/aspnetcore/tree/master/src/Identity

30+ Best Login Template Bootstrap

https://www.bootstrapdash.com/bootstrap-login-template https://github.com/nauvalazhar/bootstrap-4-login-page https://www.bootstrapdash.com/demo/star-admin-free/jquery/src/pages/samples/login.html https://www.bootstrapdash.com/demo/stellar-admin-free/jquery/pages/samples/login.html

Create DbContext Migrations

Add-Migration InitialCreate -c PersistedGrantDbContext -o Migrations/PersistedGrantMigrations -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API Add-Migration InitialCreate -c ConfigurationDbContext -o Migrations/ConfigurationMigrations -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API Add-Migration InitialCreate -c ApplicationDbContext -o Migrations/ApplicationMigrations -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API

Update-Database -Context PersistedGrantDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API Update-Database -Context ConfigurationDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API Update-Database -Context ApplicationDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API

Creates SSL Certificate

makecert.exe -r -n "CN=idsrvtest" -pe -sv idsrvtest.pvk -a sha1 -len 2048 -b 11/11/2020 -e 11/11/2088 idsrvtest.cer pvk2pfx.exe -pvk idsrvtest.pvk -spc idsrvtest.cer -pfx idsrvtest.pfx -pi idsrvtest