-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 이메일 로그인
MoonAyoung edited this page Jun 5, 2021
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /api/v2/users/signin | 자체 이메일 로그인 |
{
"Content-Type": "application/json"
}
{
"email": "[email protected]",
"password": "test"
}
{
"status": 200,
"message": "AccessToken, RefreshToken 발급합니다.",
"data": {
"accessToken": "[액세스 토큰]",
"refreshToken": "[리프레시 토큰]",
"accessExpiredAt": "2021-06-21 15:56:28",
"refreshExpiredAt": "2021-06-30 19:56:28"
}
}
- 비밀번호 오류인 경우
{
"message": "Password MisMatch Error",
"status": 400,
"errors": [],
"code": "M008"
}
- 존재하지 않는 회원인 경우
{
"message": "User is not Exist",
"status": 400,
"errors": [],
"code": "M003"
}
- 서버 에러
{
"message": "Server Error",
"status": 500,
"errors": [],
"code": "C004"
}