-
Notifications
You must be signed in to change notification settings - Fork 4
3.1.1. 로그인
100yeeun edited this page Jul 1, 2019
·
19 revisions
메소드 | 경로 | 기능 설명 |
---|---|---|
POST | BASEURL/user/signin | 로그인 |
Content-Type: application/json
email: [email protected]
password: qwerty1234
status: 200
body : {
status: 200 (OK),
success: true,
message: "로그인 성공"
data: {
accesstoken: 발급된 accessToken
}
}
status: 200
body : {
status: 400 (BAD_REQUEST)
success: false,
message: "없는 아이디거나 틀린 비밀번호"
}
status: 500(INTERNAL_SERVER_ERROR)
body : {
message: "서버 에러ㅜㅜ"
}