-
Notifications
You must be signed in to change notification settings - Fork 1
로그인
Youngwoo Yoo edited this page Jun 10, 2021
·
14 revisions
Method | Path | description |
---|---|---|
POST | /login | Log in |
Content-Type: application/json
Variable | Type | Description |
---|---|---|
userId | STRING | 아이디 |
password | STRING | 비밀번호 |
{
"userId": "ajouFlight111",
"password":"1234"
}
SUCCESS
{
"code": 200,
"message": "success",
"data":{
"token": "eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE2MjE2MTMzMTksImlkIjoyfQ.wAgwZUDJMaEAGk8DNPIWA3cD2RIs1CY5bsWCUMaLFig",
"stage": 1,
"score": 100,
"money": 1000,
"skin": -1,
"flights":[1,2,4]
}
}
FAIL
{
"code": 400,
"message": "This account does not exist"
}
{
"code": 400,
"message": "The password is incorrect"
}
{
"code":500,
"message":"An unknown error has occurred"
}