-
Notifications
You must be signed in to change notification settings - Fork 4
인기카페조회
Ji Yeon Kim edited this page Jan 7, 2019
·
1 revision
지연
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /cafe/best/{flag} | 찜 개수 순 / 리뷰 개수 순 인기 카페 5개씩 조회 |
- flag=0 : 찜 개수 순 (home search)
- flag=1 : 리뷰 개수 순 (community search)
Content-Type: application/json
Authorization: token
{
"status": 200,
"message": "인기 카페 리스트 조회 성공",
"data": [
{
"cafe_id": 1,
"cafe_name": "cafename1",
"cafe_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/sample.png",
"scrap_count": 2,
"review_count": 0
},
{
"cafe_id": 2,
"cafe_name": "cafename2",
"cafe_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/sample1.png",
"scrap_count": 1,
"review_count": 0
}
]
}
{
"status": 200,
"message": "인기 카페 리스트 조회 성공",
"data": [
{
"cafe_id": 1,
"cafe_name": "cafename1",
"cafe_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/sample.png",
"scrap_count": 0,
"review_count": 3
},
{
"cafe_id": 2,
"cafe_name": "cafename2",
"cafe_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/sample1.png",
"scrap_count": 0,
"review_count": 1
}
]
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}