-
Notifications
You must be signed in to change notification settings - Fork 4
댓글조회
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
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}