1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-14 20:41:38 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

Gitee授权登录成功

This commit is contained in:
2022-04-04 20:49:20 +08:00
parent 54911675a1
commit 5acd55c687
16 changed files with 229 additions and 63 deletions

View File

@@ -15,4 +15,14 @@ public interface ThirdPartyUserService {
*/
@Transactional
UserModel loginCallback(AuthResponse authResponse) throws BusinessException;
/**
* 个人账号中心绑定第三方账号回调函数
* @param authResponse
* @throws BusinessException
* @return
*/
@Transactional
Boolean bindThirdPartAccountCallback(AuthResponse authResponse, String token) throws BusinessException;
}