문제 발생 시점 | 날짜/시간 |
---|---|
문제 발생 기능 | 기획한 기능 |
현재 동작 | 실제 발생하는 현상 |
URL | 기능 | method | Request- headers (토큰) | Request- Body |
---|---|---|---|---|
http://localhost:3000 | 서버 실행환경 테스트 | [GET] | - | - |
http://localhost:3000/health-check | Health Check API | [GET] | - | - |
http://localhost:3000/error-test | Exception filters API | [GET] | - | - |
URL | 기능 | method | Request- headers (토큰) | Request- Body |
---|---|---|---|---|
http://localhost:3000/auth/sign-up | 회원가입 | [POST] | - | { |
“email”: “[email protected]”, | ||||
“password”: “ho21234” | ||||
} | ||||
http://localhost:3000/auth/refresh-accessToken | 액세스 토큰 재발급 | [POST] | O | |
http://localhost:3000/auth/sign-in | 로그인 | [POST] | - | { |
email : "[email protected]" | ||||
password : "1234" | ||||
} | ||||
http://localhost:3000/auth/sign-in/kakao [미완] | 카카오 로그인 | [POST] | - | |
http://localhost:3000/auth/withdraw | 회원탈퇴 | [DELETE] | O |