-
Notifications
You must be signed in to change notification settings - Fork 4
로그인
syndersonLEE edited this page Jan 3, 2019
·
4 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
POST | /login | 로그인 |
Content-Type: application/json
{
"u_email":"[email protected]",
"u_pw":"1234"
}
{
"status": 200,
"message": "로그인 성공",
"data": {
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJEb0lUU09QVCIsInVzZXJfaWR4IjoxLCJleHAiOjE1NDkxNzUyMTh9.pw9l6DZ3ihePbkR-BPlfQTZzrOGWpfzoSMTfu7SB4QQ",
"userIdx": 1
}
}
{
"status": 400,
"message": "로그인 실패",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}