|
@@ -96,8 +96,7 @@ public class AppAuthController {
|
|
|
public CommonResult<AppAuthLoginRespVO> socialLoginValidateSmsCode(@RequestBody @Validated SocialLoginValidateSmsCodeReqVO requestVO) {
|
|
|
authService.validateSmsCode(getLoginUserId(), requestVO.getReqVO());
|
|
|
AppAuthSocialLoginReqVO loginReqVO = requestVO.getLoginReqVO();
|
|
|
- String code = requestVO.getReqVO().getCode();
|
|
|
- return success(authService.socialLogin(loginReqVO, code, false, true));
|
|
|
+ return success(authService.socialLogin(loginReqVO, requestVO.getReqVO().getMobile(), false, true));
|
|
|
}
|
|
|
|
|
|
// ========== 社交登录相关 ==========
|