-
Notifications
You must be signed in to change notification settings - Fork 0
로그인
Bomi Kim edited this page Dec 12, 2018
·
1 revision
| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /login | 로그인 |
Content-Type: application/json
{
"email": "[email protected]",
"password": "1233456"
}
{
"status": 200,
"message": "로그인 성공",
"data": {
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJEb0lUU09QVCIsInVzZXJfaWR4IjoxfQ.5lCvAqnzYP4-2pFx1KTgLVOxYzBQ6ygZvkx5jKCFM08"
}
}
- 토큰 만료 기간 : 1달
{
"status": 400,
"message": "로그인 실패",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}