-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hotfix/#123/로그인 성공시 userid return #124
The head ref may contain hidden characters: "hotfix/#123/\uB85C\uADF8\uC778-\uC131\uACF5\uC2DC-userid-return"
Conversation
@@ -70,6 +70,6 @@ public BaseResponse<String> kakaoCallback(@RequestParam(name = "code") String co | |||
response.setHeader("Authorization", "Bearer " + jwtOAuthLogin); | |||
log.info("jwtOAuthLogin = {}", jwtOAuthLogin); | |||
|
|||
return new BaseResponse<>("카카오 로그인 성공"); | |||
return new BaseResponse<>(userByOAuthInfo.getUserId()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p3: 그럼 "result": 1
이런 형식으로 가는 건가요??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵! dto를 생성할까 했는데 그냥 바로 userId 값을 넘겨도 괜찮지 않을까 해서 이렇게 코드를 구성했습니다
혹시 response dto를 구성하는게 더 나을까요??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
정확히 어떤 값인지 알기 위해서 명시해주는 것도 좋다고 생각합니다.
"userId : 1
이런 식으로요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
리뷰 내용 반영해서 response dto 생성해서 userId를 전달하는 방식으로 추가 커밋 하였습니다!
@@ -70,6 +70,6 @@ public BaseResponse<String> kakaoCallback(@RequestParam(name = "code") String co | |||
response.setHeader("Authorization", "Bearer " + jwtOAuthLogin); | |||
log.info("jwtOAuthLogin = {}", jwtOAuthLogin); | |||
|
|||
return new BaseResponse<>("카카오 로그인 성공"); | |||
return new BaseResponse<>(userByOAuthInfo.getUserId()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
정확히 어떤 값인지 알기 위해서 명시해주는 것도 좋다고 생각합니다.
"userId : 1
이런 식으로요!
…turn Hotfix/#123/로그인 성공시 userid return
📝 요약
로컬 로그인, 소셜 로그인 시 response로 success msg 대신 userId 값을 보내주도록 수정
이슈 번호 : #123
🔖 변경 사항
✅ 리뷰 요구사항
📸 확인 방법 (선택)
📌 PR 진행 시 이러한 점들을 참고해 주세요