로그인시 발급받는 JWT 토큰 설명
로그인 API 요청시 받은 access_token 및 refresh_token의 payload
access_token
1h
typ, _sq, sub, iat, exp, aud, iss
refresh_token
7d
_sq값이 account의 primary key 값
Authentication: Bearer {access_token}
로그인, 회원가입 제외한 API
Authentication: Bearer {refresh_token}
refresh 요청 API
refresh_token 요청시 access_token 재발급
Last updated 2 years ago