Skip to content

Commit

Permalink
refactor: kakao access token 발급 요청에 대한 response dto에 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Wo-ogie committed Apr 4, 2024
1 parent f9f78db commit f1feb00
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public class KakaoTokenResponse {
@JsonProperty("access_token")
private String accessToken;

@JsonProperty("id_token")
private String idToken;

@JsonProperty("expires_in")
private Integer expiresIn;

Expand All @@ -26,4 +29,6 @@ public class KakaoTokenResponse {

@JsonProperty("refresh_token_expires_in")
private Integer refreshTokenExpiresIn;

private String scope;
}

0 comments on commit f1feb00

Please sign in to comment.