-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] 유저 세 번째 탭
최다인 edited this page Feb 2, 2021
·
1 revision
메소드 | 경로 | 설명 |
---|---|---|
GET | /users/home | 유저 세 번째 탭 |
{
"Content-Type": "application/json",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3QzIiwibmFtZSI6Iu2FjOyKpO2KuCIsImlhdCI6MTU3NzczNTQwNSwiZXhwIjoxNTgwMzI3NDA1LCJpc3MiOiJPdW5jZV9TZXJ2ZXIifQ.V4hcw4bxwICn4p7nz15ToUw63ok-QmbIbWx7gvDMouI"
}
{
"status": 200,
"message": "유저 홈 조회 성공입니다",
"data": {
"nickName": "Gyunny",
"whaleName": "고래1",
"userLevel": 0,
"praiseCount": 4,
"levelUpNeedCount": 5
}
}
- 유효하지 않은 토큰
{
"status": 401,
"message": "유효하지 않은 토큰값입니다"
}
- 토큰이 없을 때
{
"status": 400,
"message": "토큰 값이 없습니다"
}
- 토큰이 만료되었을 때
{
"status": 400,
"message": "토큰 값이 만료되었습니다"
}
- 서버 에러
{
"status": 500,
"message": "서버 내부 에러입니다"
}