-
Notifications
You must be signed in to change notification settings - Fork 0
에피소드별_댓글_목록
HwangJaeSuk edited this page Jun 9, 2019
·
1 revision
[GET] ~/comment/{webtoonIdx}/{episodeIdx}
메소드 | 파라미터명 | 설명 |
---|---|---|
header | Content-Type | application/json |
query string | webtoonIdx | webtoonIdx 값 |
query string | episodeIdx | episodeIdx 값 |
{
"status": 200,
"success": true,
"message": "댓글 조회 성공",
"data": [
{
"commentIdx": 1,
"content": "댓글1",
"createdTime": "2019-06-08T22:47:55.000Z",
"userName": "송예슬",
"image": "https://sopt24server.s3.ap-northeast-2.amazonaws.com/1560077275716.jpg"
}
]
}
DB 조회 시에 에러가 생긴 경우(서버파트에서 만든 에러)
{
"status": 600,
"success": false,
"message": "댓글 조회 실패"
}