Skip to content

리뷰인기순조회

Ji Yeon Kim edited this page Jan 7, 2019 · 3 revisions

리뷰 인기순 조회

지연

메소드 경로 짧은 설명
GET /review/{cafe_id}/best 카페에 대한 리뷰를 좋아요 개수대로 3개 조회
(''카페 상세보기''와 ''리뷰 모아보기''에서 사용)

요청 헤더

Content-Type: application/json
Authorization: token

응답 바디

리뷰 인기순 조회 성공

{
    "status": 200,
    "message": "리뷰 조회 성공",
    "data": [
        {
            "review_id": 24,
            "cafe_id": 1,
            "user_id": "first",
            "user_name": "모카",
            "user_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/commonDefaultimage%403x.png",
            "image": [
                {
                    "review_id": 24,
                    "review_img_url": "http://s3.ap-northeast-2.amazonaws.com/project-sopt/085e6c7ea8f64608a9cddced6a4976c0.jpg"
                },
                {
                    "review_id": 24,
                    "review_img_url": "http://s3.ap-northeast-2.amazonaws.com/project-sopt/bffc45b42fa64defa80d97de2a94b369.PNG"
                }
            ],
            "review_rating": 5,
            "review_title": "qqq",
            "review_content": "diddiidid",
            "review_date": "2019-01-02T16:33:17.000+0000",
            "cafe_name": "cafename1",
            "cafe_address": "서울 종로구",
            "time": "4일 전",
            "like_count": 2,
            "comment_count": 0,
            "auth": true,
            "like": false
        },
        {
            "review_id": 21,
            "cafe_id": 1,
            "user_id": "first",
            "user_name": "모카",
            "user_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/commonDefaultimage%403x.png",
            "image": [
                {
                    "review_id": 21,
                    "review_img_url": "http://s3.ap-northeast-2.amazonaws.com/project-sopt/3c9714ebe8824c3cae1f01af87024066.jpg"
                }
            ],
            "review_rating": 1,
            "review_title": "review test",
            "review_content": "hello",
            "review_date": "2019-01-01T05:41:43.000+0000",
            "cafe_name": "cafename1",
            "cafe_address": "서울 종로구",
            "time": "6일 전",
            "like_count": 0,
            "comment_count": 0,
            "auth": true,
            "like": false
        }
    ]
}

존재하지 않는 카페 조회

{
    "status": 404,
    "message": "카페를 찾을 수 없습니다",
    "data": null
}

존재하지 않는 리뷰 조회

{
    "status": 204,
    "message": "리뷰를 찾을 수 없습니다",
    "data": null
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "message": "서버 내부 에러",
    "data": null
}
Clone this wiki locally