-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 로그인
DongGeon0908 edited this page Sep 8, 2021
·
7 revisions
METHOD | URL | ... |
---|---|---|
POST | /api/login | 로그인 |
{
"Content-Type": "application/json"
}
{
"email": "[email protected]",
"password" : "!Oinging123"
}
{
"status": 200,
"message": "LOGIN_SUCCESS",
"data": {
"token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJ3cmpzQG5hdmVyLmNvbSIsImF1dGgiOiJVU0VSIiwiZXhwIjoxNjMwODQxMjAzfQ.QkmyDhPnz9VMEEIukDqca9gDzCra_AajBUbrcI3PMqkqVEZVxvMKFUCpjIuNeifGLygXceA_cY8N29DQhqGCSQ"
}
}