Skip to content

Commit

Permalink
Merge pull request #139 from SportsEcho/feature/user
Browse files Browse the repository at this point in the history
카카오 로그인 redirect_uri 변경
  • Loading branch information
zzzzseong committed Jan 30, 2024
2 parents 6128155 + 7f73240 commit 07639d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/sportsecho/common/oauth/OAuthUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private MultiValueMap<String, String> generateBody(SocialType socialType, String
if(SocialType.KAKAO.equals(socialType)) {
body.add("grant_type", "authorization_code");
body.add("client_id", kakaoApiKey);
body.add("redirect_uri", "http://sportsecho.life:3000/redirect/kakao");
body.add("redirect_uri", "https://sportsecho.life/redirect/kakao");
body.add("code", code);
}
if(SocialType.NAVER.equals(socialType)) {
Expand Down

0 comments on commit 07639d3

Please sign in to comment.