From 9738f1a83ca89c0a4587615149286c8c14161572 Mon Sep 17 00:00:00 2001 From: tolelom <98kimsungmin@naver.com> Date: Thu, 12 Mar 2026 01:21:01 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20SSAFYTokenResponse.expires=5Fin=20?= =?UTF-8?q?=ED=83=80=EC=9E=85=EC=9D=84=20int=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SSAFY 서버가 expires_in을 숫자로 반환하므로 string에서 int로 변경. Co-Authored-By: Claude Opus 4.6 --- internal/auth/model.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/auth/model.go b/internal/auth/model.go index 19cea53..f428f62 100644 --- a/internal/auth/model.go +++ b/internal/auth/model.go @@ -29,7 +29,7 @@ type SSAFYTokenResponse struct { TokenType string `json:"token_type"` AccessToken string `json:"access_token"` Scope string `json:"scope"` - ExpiresIn string `json:"expires_in"` + ExpiresIn int `json:"expires_in"` RefreshToken string `json:"refresh_token"` RefreshTokenExpiresIn int `json:"refresh_token_expires_in"` }