摘要:
CentOS7安装tyk(内部部署) 参考 官方文档 github 环境准备 #确保端口3000处于打开状态:Dashboard使用该端口来提供GUI和Developer Portal #Tyk需要Python 3.4、允许我们使用签名软件包的软件 sudo yum -y install epel- 阅读全文
摘要:
#!/bin/bash #安装gcc yum -y install gcc #安装RVM所需的程序包 yum -y install gcc-c++ patch readline readline-devel zlib zlib-devel yum -y install libyaml-devel libffi-devel openssl-devel make yum -y install bz... 阅读全文
摘要:
.net core在Linux下获取AD域信息 .net Core 2.1.4 .net core现在System.DirectoryServices只支持Windows平台下使用。 参考: https://github.com/dotnet/standard/pull/444 https://gi 阅读全文
摘要:
IdentityServer4之SSO(基于OAuth2.0、OIDC)单点登录、登出 准备 五个Web站点: 1、localhost:5000 : 认证服务器。2、www.hybrid.com : .net core2.0 Web MVC项目3、www.jsclient.com : js纯静态项目 阅读全文
摘要:
IdentityServer4之Clients、Scopes、Claims与Token关联 参考 官方文档:client、identity_resource、api_resource:三类配置项介绍描述。 打一个不恰当的比喻来描述一下User:表示自己 。Client:表示客户经理,能指引或者代办一 阅读全文
摘要:
IdentityServer4之Implicit(隐式许可) —— oidc-client-js前后端分离 参考 官方文档:oidc-client-js:oidc-client是一个JavaScript库,用于在浏览器(也可能是Cordova风格的应用程序)中运行。它为OIDC和OAuth2提供协议 阅读全文
摘要:
IdentityServer4之Implicit(隐式许可) 参考 官方文档:3_interactive_login 、7_javascript_client 概念:隐式许可 认证服务端配置 认证服务ApiResource配置 new ApiResource("api1", "api项目 一") { 阅读全文
摘要:
IdentityServer4之Resource Owner Password Credentials(资源拥有者密码凭据许可) 参考 官方文档:2_resource_owner_passwords 概念:资源拥有者密码凭据许可 认证服务端配置 认证服务ApiResource配置 new ApiRe 阅读全文
摘要:
IdentityServer4之Client Credentials(客户端凭据许可) 参考 项目创建:0_overview,1_client_credentials 概念:客户端凭据许可 认证服务端配置 认证服务ApiResource配置 new ApiResource("api1", "api项 阅读全文
摘要:
# OAuth2.0介绍 1. [OAuth2.0简介](#Introduction) 2. [四种许可类型](#Type) 2.1. [授权码许可(Authorization Code)](#AuthorizationCode) 2.2. [隐式许可(Implicit)](#Implicit) 2 阅读全文