HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
♥️
2기 최종 프로젝트 팀별 공간
/
[팀 BackFro💯] ArtZip: 세상 모든 전시회를 한 번에
[팀 BackFro💯] ArtZip: 세상 모든 전시회를 한 번에
/
🚀
API 명세
/
로컬로그인

로컬로그인

사용되는 페이지
로그인
HTTP Method
POST
설명
custom annotation 논의
인증 필요 여부
완료 여부
완료
URL
api/v1/users/local/login
담당자
인증 여부에 따른 응답 변경 여부
해당없음
must or should
도메인
USER

Request

{ "email": "이메일", "password": "비밀번호" }

Response

{ "message": "로그인 성공", "status": 200, "data": { "userId": 1, "accessToken": "fdafda", "refreshToken": "fdafda", } }
  • accessToken payload
    • Long userId
    • String[] roles = [“USER”]
    • Date iat
    • Date exp
  • refreshToken payload
    • Long userId
    • Date iat
    • Date exp
    •