-
Notifications
You must be signed in to change notification settings - Fork 0
✔️ 로그인 화면
SeoYng edited this page Jun 6, 2020
·
1 revision
메소드 | 경로 | 설명 |
---|---|---|
POST | /user/signin | 로그인 |
{
"Content-Type": "application/json"
}
{
"id": "tjdud0123",
"password": "qwerty",
}
- id : 사용자 아이디
- password : 사용자 비밀번호
{
"status": 200,
"success": true,
"message": "로그인 성공",
"data":{
"userId":"tjdud0123"
}
}
- 비밀번호 오류
{
"status": 400,
"success": false,
"message": "비밀번호가 맞지 않습니다."
}
- 아이디 없음
{
"status": 400,
"success": false,
"message": "존재하지 않는 회원입니다."
}
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}