[Feat] Refresh Token을 이용한 Access Token 재발급 구현 #59
Merged
Conversation
…시 Refresh Token을 DB에 저장, 로그아웃 시 Refresh Token을 DB에서 삭제
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 개요
🚀 관련 이슈
✅ 변경 사항
{ "status": 200, "message": "토큰 재발급 성공", "data": { "grantType": "Bearer", "accessToken": "new_access_token", "role": "MEMBER" } }POST /api/v1/auth/reissue) 추가📝 상세 내용
Refresh Token 저장 구조 설계
Access Token 재발급 흐름
POST /api/v1/auth/reissue엔드포인트에 쿠키(Refresh)와 함께 요청보안성 강화
401 UNAUTHORIZED에러 코드 반환통합 테스트
401 UNAUTHORIZED