IdentityServer4-快速入门
Posted zd1994
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IdentityServer4-快速入门相关的知识,希望对你有一定的参考价值。
九、使用EntityFramework核心进行配置和操作数据
1,使用 dotnet new mvc 创建一个mvc项目
2,nuget IdentityServer4
3,修改Startup
public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddIdentityServer()//在DI中注册IdentityServer服务,它还为运行时状态注册一个内存存储 .AddDeveloperSigningCredential();//设置临时签名凭证 } public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseIdentityServer(); } }
八、添加一个javascript客户端
九、使用EntityFramework核心进行配置和操作数据
以上是关于IdentityServer4-快速入门的主要内容,如果未能解决你的问题,请参考以下文章