-
Notifications
You must be signed in to change notification settings - Fork 3
로그인
famer9716 edited this page Jul 17, 2020
·
5 revisions
| 메소드 | 경로 | 설명 |
|---|---|---|
| POST | /user/login | 로그인 |
{
"Content-Type" : "application/json"
}{
"id" : "test",
"password" : "test"
}- id : 로그인할 id
- password : 로그인할 password
👍 success
{
"status" : 200,
"success" : true,
"message" : "login success",
"result" : {
"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFrc2d1cmFrc2d1ciIsIm5pY2tuYW1lIjoiY
WtzZ3VyYWtzZ3VyIiwiaWF0IjoxNTE0ODA5NDUwLCJleHAiOjE1MTQ4NDU0NTB9.2tBzEWUZLe6addZGUI2MppXcRXDVD43LyIqYVnyQM6I"
}
}👎 fail
{
"status" : 200,
"success" : false,
"message" : "login fail",
"result" : {}
}