Skip to content

스토리 댓글 생성

jungahshin edited this page Jan 2, 2020 · 3 revisions

스토리 댓글 생성

Request

URL

메소드 경로 설명
POST /story/{storyIdx}/comment 스토리의 댓글 생성

Params

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

Header

Content-Type: application/json

Body

변수 타입 설명
content TEXT 댓글 내용
{
	"content" : "너무 재밌다~~"
}

Response

Body

스토리의 댓글을 생성합니다.

SUCCESS

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

FAIL

{
    "status" : 317,
    "success": false,
    "message": "댓글 조회 실패"
}
{
    "status": 900,
    "success": false,
    "message": "필요한 값이 없습니다"
}