-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] 칭찬 랭킹 조회
최다인 edited this page Feb 9, 2021
·
5 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /praise/ranking | 칭찬 랭킹 조회하기 |
{
"Content-Type": "application/json",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWR4IjozOCwiaWF0IjoxNjEyMjc3MzQxLCJleHAiOjE2MTQ4NjkzNDEsImlzcyI6InByYWlzZSJ9.tYMMe-wQUgH1bC4K9VSb2l7zhBBk9B1ja3CdYvFSwxg"
}
{
"status": 200,
"message": "칭찬 컬렉션 년,월별 조회 성공입니다",
"data": {
"praiseCount": [
{
"praiseCount": 10
}
],
"collectionPraise": [
{
"praisedName": "규니1",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "규니2",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "규니3",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "규니",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "규니",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "규니",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "규니",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "희빈",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "정은",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "정은",
"today_praise": "너가 내 친구라서 참 좋아"
}
],
"nickName": "Gyunny"
}
}
- 유효하지 않은 토큰
{
"status": 401,
"message": "유효하지 않은 토큰값입니다"
}
- 토큰이 없을 때
{
"status": 400,
"message": "토큰 값이 없습니다"
}
- 토큰이 만료되었을 때
{
"status": 400,
"message": "토큰 값이 만료되었습니다"
}
- 서버 에러
{
"status": 500,
"message": "서버 내부 에러입니다"
}