Skip to content

Commit

Permalink
feat : 리다이렉트주소 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jsilver01 committed Aug 1, 2024
1 parent 83560eb commit 8027786
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private String getAccessToken(String code){
UriComponentsBuilder builder = UriComponentsBuilder.fromHttpUrl("https://kauth.kakao.com/oauth/token")
.queryParam("grant_type", "authorization_code")
.queryParam("client_id", clientId)
.queryParam("redirect_uri", redirectUri)
.queryParam("redirect_uri", "http://43.202.94.241:8080/auth/kakao/callback")
.queryParam("code", code);

HttpHeaders headers = new HttpHeaders();
Expand Down

0 comments on commit 8027786

Please sign in to comment.