-
Notifications
You must be signed in to change notification settings - Fork 2
스토리 댓글 생성
jungahshin edited this page Jan 2, 2020
·
3 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /story/{storyIdx}/comment | 스토리의 댓글 생성 |
변수 | 타입 | 설명 |
---|---|---|
storyIdx | INT | 스토리 고유 idx |
/story/1/comment
Content-Type: application/json
변수 | 타입 | 설명 |
---|---|---|
content | TEXT | 댓글 내용 |
{
"content" : "너무 재밌다~~"
}
스토리의 댓글을 생성합니다.
{
"success": true,
"message": "댓글 조회 성공",
"data": [
{
"nickname": "희룽",
"front_image": "undefined",
"content": "test~~~~~!!!!",
"created_date": "2019-12-28 17:59"
}
]
}
{
"status" : 317,
"success": false,
"message": "댓글 조회 실패"
}
{
"status": 900,
"success": false,
"message": "필요한 값이 없습니다"
}