Skip to content

3.1.1. 로그인

sunkyungBAEK edited this page Jul 12, 2019 · 19 revisions

로그인

메소드 경로 기능 설명
POST BASEURL/user/signin 로그인

Request Body

{
    "email": "[email protected]",
    "password": "password3",
    "device_token": "기기토큰"
}

Response

로그인 성공

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: "서버 에러ㅜㅜ"
}

Clone this wiki locally