摘要:
录制gif图片软件 ScreenToGif 代码生成器软件 CodeSmith mysql: Mariadb 邮件客户端 Foxmail api请求工具: postman 监视请求工具 fiddler2 文件同步工具 RealTimeSync ssh相关工具 FinalShell, XShell,P 阅读全文
摘要:
本案例演示所用系统是windows server 2012.其它版本windows操作系统类似。 1,首先需要下载mysql odbc安装包1。 http://dev.mysql.com/downloads/connector/odbc/5.1.html 如果自己所用软件是32位,下载32位的,64 阅读全文
摘要:
使用的是 "name": "vue-admin-template", "version": "4.4.0", 下载地址: https://github.com/PanJiaChen/vue-admin-template/ 默认安装后是不兼容IE11的,需要单独配置。 参考: https://blog 阅读全文
摘要:
当使用 HttpContext.Current用到不是当前线程会出null的情况,可使用 System.Web.HttpRuntime.AppDomainAppPath获取程序的根路 string path = HttpContext.Current.Server.MapPath("d:\a.txt"); 阅读全文
摘要:
1-增加IdentityServer4.AspNetIdentity nuget包 2- StartUp.cs启用增加相应的代码 .AddAspNetIdentity<ApplicationUser>() 3-去掉之前注释过的代码 3-修改Lgoin中的代码,不再使用之前测试的代码 依赖注入的代码 阅读全文
摘要:
1-定义一个从前台传到后台的viewModel 2-确定逻辑实现 3-前台consent/index.cshtml 4 _scopeListItem.cshtml 阅读全文
摘要:
1-在授权服务端建立相应的显示ViewModel 2-新建相应的授权页ConsentController, 3-编写相应的index.cshtml 4- _ScopeListItem.cshtml分页视图 5-Config.cs 6-显示结果 阅读全文
摘要:
1-新建.net core2.1 mvc网站 2-在Startup.config文件增加相关代码, 下面代码已经配置好oidc客户端了,并设置本mvc启动ip为5009 3-新建一个测试页,新加HomeController.cs home.cshtml页代码 显示结果 阅读全文
摘要:
1-我们使用之前项目的mvcCookieAuthSampe2进行改造 1.1 增加IdentityServer4 2-增加Config.cs文件,对IdentityServer提供相关的配置数据 2-在Startup.cs文件启用IdentityServer 3-在AccountController 阅读全文
摘要:
1-服务端代码, 配置类,可加 RequireClientSecret=false, 这样调用端就不需要传入client_secret参数 2-在Start.up.cs增加 .AddTestUsers(Config.GetTestUsers()) ;用于测试用户 3-客户端代码, 与 ClientC 阅读全文
摘要:
1-新建.net core控制台应用程序 2-使用nuget工具安装 IdentityModel 3-编写API调用,说明http://localhost:5000是授权服务器, 5001是网站服务器客户端,即提供资源端 使用dotnet run运行后,结果如下 阅读全文