Skip to content

유저피드조회

Ji Yeon Kim edited this page Jan 11, 2019 · 5 revisions

유저피드 조회

지연

메소드 경로 짧은 설명
GET /feed/user/{user_id} 유저가 쓴 모든 리뷰 최신순으로 조회
  • user_id = -1 : 본인 피드 조회

요청 헤더

Content-Type: application/json
Authorization: token

응답 바디

유저피드 조회 성공

{
    "status": 200,
    "message": "피드 조회 성공",
    "data": [
        {
            "review_id": 28,
            "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": 28,
                    "review_img_url": "http://s3.ap-northeast-2.amazonaws.com/project-sopt/9ad8c25add15470c8bc3d74dcd97975a.PNG"
                },
                {
                    "review_id": 28,
                    "review_img_url": "http://s3.ap-northeast-2.amazonaws.com/project-sopt/b13582e3cd034902bb64867482b367ee.jpg"
                }
            ],
            "review_rating": 5,
            "review_title": "루ㅇ아아",
            "review_content": "ㅇ나아아아",
            "review_date": "2019-01-03T09:03:57.000+0000",
            "cafe_name": "cafename1",
            "cafe_address": "서울 종로구",
            "time": "4일 전",
            "like_count": 0,
            "comment_count": 0,
            "auth": true,
            "like": false
        },
        {
            "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": "5일 전",
            "like_count": 2,
            "comment_count": 0,
            "auth": true,
            "like": false
        },
        {
            "review_id": 22,
            "cafe_id": 2,
            "user_id": "first",
            "user_name": "모카",
            "user_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/commonDefaultimage%403x.png",
            "image": [
                {
                    "review_id": 22,
                    "review_img_url": "http://s3.ap-northeast-2.amazonaws.com/project-sopt/94dfcc3859da43f8a9f29223873a81a0.jpg"
                }
            ],
            "review_rating": 4,
            "review_title": "sdfasdf",
            "review_content": "asdf",
            "review_date": "2019-01-02T02:35:07.000+0000",
            "cafe_name": "cafename2",
            "cafe_address": "서울 중구",
            "time": "5일 전",
            "like_count": 0,
            "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": 204,
    "message": "피드를 찾을 수 없습니다",
    "data": null
}

INTERNAL SERVER ERROR

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