增加分支 3.x(该分支不会更新)
由于之前的实现脱离了 Oauth2
的管理,所以这次重构把所有授权接口都统一整合到 oauth/token
接口中通过 grant_type
来区分与控制权限,并删除 OAuth2Controller
类。
其他请求参数不变
密码验证码登录
原接口: http://localhost:9900/api-uaa/oauth/user/token
新接口: http://localhost:9900/api-uaa/oauth/token?grant_type=password_code
原接口: http://localhost:9900/api-uaa/oauth/openId/token
新接口: http://localhost:9900/api-uaa/oauth/token?grant_type=openId
原接口: http://localhost:9900/api-uaa/oauth/mobile/token
新接口: http://localhost:9900/api-uaa/oauth/token?grant_type=mobile_password
应用支持那些 授权模式 ,现在可以在应用管理里统一配置与查看了
需要执行以下sql语句,不然会登录不了
zlt-doc/版本升级_sql/旧版本升级v4.0.0.sql
不是升级的不需要执行,因为zlt-doc/sql里面已包含
Gitee地址: https://gitee.com/zlt2000/microservices-platform
Github地址: https://github.com/zlt2000/microservices-platform
https://www.kancloud.cn/zlt2000/microservices-platform/919417