Skip to content

[POST] 로그인

DongGeon0908 edited this page Sep 8, 2021 · 7 revisions

URL

METHOD URL ...
POST /api/login 로그인

Request Header

{
    "Content-Type": "application/json"
}

Request Body

{
    "email": "[email protected]",
    "password" : "!Oinging123"
}

Response Success

{
  "status": 200,
  "message": "LOGIN_SUCCESS",
  "data": {
    "token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJ3cmpzQG5hdmVyLmNvbSIsImF1dGgiOiJVU0VSIiwiZXhwIjoxNjMwODQxMjAzfQ.QkmyDhPnz9VMEEIukDqca9gDzCra_AajBUbrcI3PMqkqVEZVxvMKFUCpjIuNeifGLygXceA_cY8N29DQhqGCSQ"
  }
}