安装 IdentityServer4 模板
dotnet new -i IdentityServer4.Template
1、IdentityServer4
创建IdentityServer4项目: dotnet new is4empty -n 项目名 运行:https://localhost:5001/.well-known/openid-configuration
定义及配置要保护的API
public static class Config { public static IEnumerable<ApiScope> ApiScopes => new List<ApiScope> { new ApiScope("api1", "My API") }; }