1
0
mirror of synced 2026-02-22 20:47:47 +08:00

🍻 AuthUser 中新增 rawUserInfo,用来存放第三方平台返回的原始用户数据

This commit is contained in:
yadong.zhang
2020-06-07 18:46:00 +08:00
parent 8e5a679129
commit 33385fd30a
49 changed files with 295 additions and 98 deletions

View File

@@ -1,9 +1,11 @@
## 1.15.5-alpha
### 2020/06/07
- 修复
- BUG
- 解决 `Microsoft` 授权失败的 BUG
- 解决 `Coding` 个人账号授权失败的 BUG目前只能使用团队模式进行授权需要传入团队名参考`AuthConfig#codingGroupName`
- 解决 `AuthLinkedinRequest#getAvatar` NPE 的问题。(领英用户没有头像时,原代码会报 NPE
- 新增
- AuthUser 中新增 `rawUserInfo`,用来存放第三方平台返回的原始用户数据。注:淘宝平台的`rawUserInfo`为一个空 JSON
- 支持 Http 级的代理配置,使用方式:
```java
new AuthGoogleRequest(AuthConfig.builder()
@@ -17,15 +19,23 @@ new AuthGoogleRequest(AuthConfig.builder()
.build())
.build());
```
- 修改
- 删除
- 删除**腾讯云登录**。coding 已并入 腾讯云,因此只保留 coding 登录
- 文档
- 新增 [Coding登录](oauth/coding.md)文档
- 完善 [支付宝登录](oauth/alipay.md)文档
- 完善 [贡献者名单](contributors.md)文档
- 完善 [参考文档](references.md)文档
- PR
- 合并 [Gitee!17](https://gitee.com/yadong.zhang/JustAuth/pulls/17)
- 合并 [Gitee!15](https://gitee.com/yadong.zhang/JustAuth/pulls/15)
- 合并 [Github#81](https://github.com/justauth/JustAuth/pull/81)
- Issues
- 解决 [Github#80](https://github.com/justauth/JustAuth/issues/80)
- 解决 [Github#75](https://github.com/justauth/JustAuth/issues/75)
## 1.15.4-alpha
### 2020/05/13
- 修复