Open
Conversation
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
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.
Summary
POST /auth/google)POST /auth/refresh), 로그아웃 (POST /auth/logout), 프로필조회 (
GET /auth/me) API 구현주요 결정 사항
(
google-auth-library)통신 없이 검증 가능
가능
Test Plan
AuthService,UserService핵심 로직 테스트 (pnpm test)(
pnpm test:e2e)POST /auth/google— 신규 유저 회원가입, 기존 유저 재로그인,idToken 누락 400, Google 인증 실패 401
POST /auth/refresh— 정상 갱신, 사용된 토큰 재사용 401, 존재하지않는 토큰 401, 누락 400
GET /auth/me— 정상 조회, 토큰 없음 401, 잘못된 토큰 401POST /auth/logout— 로그아웃 후 refresh 무효화, 토큰 없이 401프로필 → 로그아웃 → refresh 불가
프론트엔드 연동 후 실제 연동테스트 예정