Skip to content

Commit

Permalink
Fix: AppleAuthTokenResponse 코드 카멜로 변경으로 인핸 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hee9841 committed Aug 8, 2024
1 parent 476ad53 commit b31090f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public String getAccessToken(String code) {
.code(code)
.grant_type("authorization_code")
.build())
.access_token();
.accessToken();
} catch (HttpClientErrorException e) {
throw new BusinessException(ErrorType.FAILED_AUTHENTICATION, e.getMessage());
}
Expand Down

0 comments on commit b31090f

Please sign in to comment.