-
Notifications
You must be signed in to change notification settings - Fork 1
[User] 로그인
jujube0 edited this page Jan 12, 2021
·
3 revisions
POST /users/signin
name | type | description | required |
---|---|---|---|
nickname | String | O | |
password | String | O |
{
"nickname":"alsl2436",
"password": "1234"
}
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | Data |
name | type | description |
---|---|---|
token | String | 토큰 |
{
"status": 200,
"success": true,
"message": "로그인 성공.",
"data": {
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTMsImlhdCI6MTYwOTQyNTEyOCwiZXhwIjoxNjA5NDUwMzI4LCJpc3MiOiJiZW1lIn0.6HA_WS98eqWsAfmS0cKckC6kM6bc_2EBrPP0o8eDJiE"
}
}
{
"status": 400,
"success": false,
"message": "존재하지않는 유저 id 입니다.",
"data": {
"token": null
}
}