Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjae02 committed Jul 31, 2024
2 parents d69d1cf + 84ad4a2 commit 40edcbd
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,11 @@ public ResponseEntity<Map<String, String>> getKakaoConfig() {
* 백엔드에서 카카오 액세스 토큰을 요청하고, 사용자 정보를 가져와서 회원으로 등록하거나 인증을 수행합니다.
* 그 후, 자체 JWT 액세스 토큰과 리프레시 토큰을 생성하여 응답합니다. (기존 로그인과 동일)
*
* @param kakaoLoginRequestDto 인가 코드를 포함한 요청 본문
* @param code 인가 코드를 포함한 요청 본문
* @return 성공 시 JWT 액세스 토큰과 리프레시 토큰을 포함한 응답
*/
@PostMapping("/oauth2/code/kakao")
public ResponseEntity<?> oauth2KakaoCallback(@RequestBody KakaoLoginRequestDto kakaoLoginRequestDto) {
String code = kakaoLoginRequestDto.getCode();
public ResponseEntity<?> oauth2KakaoCallback(@RequestParam String code) {
TokenResponseDto tokenResponse = oAuth2KakaoService.registerOrAuthenticateKakaoUser(code);
return ResponseEntity.ok(tokenResponse);
}
Expand Down

0 comments on commit 40edcbd

Please sign in to comment.