Skip to content

댓글조회

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

댓글 조회

지연

메소드 경로 짧은 설명
GET /review/{review_id}/comment 리뷰에 대한 댓글 조회

요청 헤더

Content-Type: application/json

응답 바디

댓글 조회 성공

{
    "status": 200,
    "message": "댓글 조회 성공",
    "data": [
        {
            "review_comment_id": 13,
            "user_id": "first",
            "user_name": "모카",
            "user_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/commonDefaultimage%403x.png",
            "review_comment_content": "sdfsd/f",
            "review_comment_date": "2019-01-08T12:28:01.000+0000",
            "time": "5분 전",
            "auth": true
        }
    ]
}

존재하지 않는 리뷰 조회

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

존재하지 않는 댓글 조회

{
    "status": 204,
    "message": "댓글을 찾을 수 없습니다",
    "data": null
}

INTERNAL SERVER ERROR

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