DengLinLang e95045d4d6 1.用户设定上传的电签图片尺寸并预览2.后管wbs配置电签 区分系统识别和电签配置3.修复用户账号没有分配计量系统却可以登录计量系统 | 1 ヶ月 前 | |
---|---|---|
.. | ||
src | 1 ヶ月 前 | |
Dockerfile | 2 年 前 | |
README.md | 1 年間 前 | |
blade-auth.iml | 2 ヶ月 前 | |
pom.xml | 2 年 前 |
一、 授权码模式 授权码模式(authorization_code)主要针对第三方应用,是最为复杂也最为安全的一种模式,操作步骤如下
1.
请求头: Authorization : Basic YmxhZGU6YmxhZGU= ("YmxhZGU6YmxhZGU="为clientId:clientSecret串转换为的base64编码)
表单: grant_type:authorization_code scope:all code:VhYNLR redirect_uri: http://example.com
二、 密码模式 密码模式(password)主要针对自家应用,可信度较高,所以可以使用简便安全共存的模式,操作步骤如下
请求头: Authorization : Basic YmxhZGU6YmxhZGU= ("YmxhZGU6YmxhZGU="为clientId:clientSecret串转换为的base64编码)
表单: grant_type:password scope:all username:admin password:123456