diff --git a/src/main/java/com/ajou/hertz/common/kakao/dto/response/KakaoTokenResponse.java b/src/main/java/com/ajou/hertz/common/kakao/dto/response/KakaoTokenResponse.java index 3040885..e844445 100644 --- a/src/main/java/com/ajou/hertz/common/kakao/dto/response/KakaoTokenResponse.java +++ b/src/main/java/com/ajou/hertz/common/kakao/dto/response/KakaoTokenResponse.java @@ -1,5 +1,7 @@ package com.ajou.hertz.common.kakao.dto.response; +import org.springframework.lang.Nullable; + import com.fasterxml.jackson.annotation.JsonProperty; import lombok.AccessLevel; @@ -18,6 +20,10 @@ public class KakaoTokenResponse { @JsonProperty("access_token") private String accessToken; + @JsonProperty("id_token") + @Nullable + private String idToken; + @JsonProperty("expires_in") private Integer expiresIn; @@ -26,4 +32,7 @@ public class KakaoTokenResponse { @JsonProperty("refresh_token_expires_in") private Integer refreshTokenExpiresIn; + + @Nullable + private String scope; }