1
0
mirror of synced 2026-02-19 02:27:46 +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

@@ -58,7 +58,7 @@ String authorizeUrl = authRequest.authorize(AuthStateUtils.createState());
```java
import me.zhyd.oauth.config.AuthConfig;
import me.zhyd.oauth.request.AuthWeiboRequest;
import me.zhyd.oauth.request.AuthCodingRequest;
import me.zhyd.oauth.model.AuthCallback;
import me.zhyd.oauth.model.AuthToken;
import me.zhyd.oauth.request.AuthRequest;
@@ -94,7 +94,7 @@ public class RestAuthController {
}
private AuthRequest getAuthRequest() {
return new AuthTencentCloudRequest(AuthConfig.builder()
return new AuthCodingRequest(AuthConfig.builder()
.clientId("App Key")
.clientSecret("App Secret")
.redirectUri("授权回调页")