-
Notifications
You must be signed in to change notification settings - Fork 4
3.1.1. 로그인
sunkyungBAEK edited this page Jul 12, 2019
·
19 revisions
메소드 | 경로 | 기능 설명 |
---|---|---|
POST | BASEURL/user/signin | 로그인 |
{
"email": "[email protected]",
"password": "password3",
"device_token": "기기토큰"
}
status: 200
body : {
status: 200 (OK),
success: true,
message: "로그인 성공"
data : {
accesstoken : 발급된 accessToken
refreshtoken : 발급된 refreshtoken
}
}
status: 200
body : {
status: 400 (BAD_REQUEST)
success: false,
message: "존재하지 않는 이메일 이거나 비밀번호가 맞지 않습니다"
}
status: 500(INTERNAL_SERVER_ERROR)
body : {
message: "서버 에러ㅜㅜ"
}