Skip to content

Commit

Permalink
feat : test
Browse files Browse the repository at this point in the history
  • Loading branch information
jsilver01 committed Aug 1, 2024
1 parent 8027786 commit 7b9e1dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
public class TestController {
@GetMapping("/test")
public String likelion(){
return "test";
return "testㅇㅇㅇㅇ";
}
}
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", "http://43.202.94.241:8080/auth/kakao/callback")
.queryParam("redirect_uri", redirectUri)
.queryParam("code", code);

HttpHeaders headers = new HttpHeaders();
Expand Down

0 comments on commit 7b9e1dc

Please sign in to comment.