Skip to content

Commit

Permalink
chore: 디버깅 출력 문구 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
slimsha2dy committed Jul 18, 2024
1 parent 20198e3 commit 4b52f2c
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,13 @@ public KakaoOauthClient(
.withReadTimeout(Duration.ofSeconds(3));
ClientHttpRequestFactory requestFactory = ClientHttpRequestFactories.get(settings);

System.out.println("restApiKey = " + restApiKey);

this.restClient = RestClient.builder()
.requestFactory(requestFactory)
.build();
this.userInformationRequestUri = userInformationRequestUri;
this.accessTokenRequestUri = accessTokenRequestUri;
this.restApiKey = restApiKey;
this.redirectUri = redirectUri;
this.restClient = RestClient.builder()
.requestFactory(requestFactory)
.build();
}

public OauthUserInformationResponse requestUserInformation(String authorizationCode) {
Expand Down

0 comments on commit 4b52f2c

Please sign in to comment.