Skip to content

Commit

Permalink
[fix] 카카오 로그인 로컬 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
hysong4u committed Feb 13, 2024
1 parent 814aa95 commit bc9c202
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ public KakaoUserInfoResponseDto kakaoCallback(String code, String environment) {
if ("production".equals(environment)) {
params.add("redirect_uri", redirectUri);
} else {
params.add("redirect_uri", "http://localhost:5173/api/oauth/kakao/login");
params.add("redirect_uri", redirectUri);
//params.add("redirect_uri", "http://localhost:5173/api/oauth/kakao/login");
}
params.add("code", code);

Expand Down

0 comments on commit bc9c202

Please sign in to comment.