Skip to content

Commit

Permalink
Merge pull request #140 from SportsEcho/dev1
Browse files Browse the repository at this point in the history
Https 적용으로 발생한 버그 긴급 수정
  • Loading branch information
zzzzseong authored Jan 30, 2024
2 parents 1101175 + 07639d3 commit 4c1dbe7
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 4c1dbe7

Please sign in to comment.