-
Notifications
You must be signed in to change notification settings - Fork 2
1.2. 로그인
YeongWoooo edited this page Jan 2, 2020
·
4 revisions
영우
메소드 | 경로 | 설명 |
---|---|---|
GET | /auth/signin | 로그인 |
Content-Type: application/json
access_token: "facebook access token 값"
firebase_token : "firebase token 값"
로그인 성공시
{
"status": 200,
"success": true,
"message": "로그인 성공",
"data": {
"token": "토큰 값"
}
}
토큰 값에 이상이 있을 때
{
"status": 400,
"success": false,
"message": "잘못된 토큰"
}
존재하지 않는 유저일 때
{
"status": 401,
"success": false,
"message": "존재하지 않는 user 입니다. [강영우]"
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}