Skip to content

로그인

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
}
Clone this wiki locally