-
Notifications
You must be signed in to change notification settings - Fork 4
로그인
Ji Yeon Kim edited this page Jan 4, 2019
·
1 revision
소연
메소드 | 경로 | 설명 |
---|---|---|
POST | /login | 로그인 |
Content-Type: application/json
{
"user_id" : "coco",
"user_password" : "aaaaa"
}
{
"status": 200,
"message": "로그인 성공",
"data": {
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoiY29jbyIsImlzcyI6IkRvSVRTT1BUIn0.Rplge4ISuuCrFzrddjOl55TCeRQ2QUD9yuwSMmOZ5X0"
}
}
{
"status": 400,
"message": "로그인 실패",
"data": null
}