Skip to content

스토리 댓글 조회

jungahshin edited this page Jan 1, 2020 · 1 revision

스토리 댓글 조회

Request

URL

메소드 경로 설명
GET /story/{storyIdx}/comment 스토리의 댓글 조회

Params

변수 타입 설명
storyIdx INT 스토리 고유 idx
/story/1/comment

Header

Content-Type: application/json

Response

Body

스토리의 댓글을 조회합니다.

SUCCESS

{
    "success": true,
    "message": "댓글 조회 성공",
    "data": [
        {
            "nickname": "희룽",
            "front_image": "undefined",
            "content": "test~~~~~!!!!",
            "created_date": "2019-12-28 17:59"
        },
        {
            "nickname": "희룽",
            "front_image": "undefined",
            "content": "test2~~~~@@@",
            "created_date": "2019-12-28 18:03"
        },
        {
            "nickname": "희룽",
            "front_image": "undefined",
            "content": "test2~~~~gg",
            "created_date": "2019-12-28 18:03"
        }
    ]
}

FAIL

{
    "success": false,
    "message": "댓글 조회 실패"
}