Skip to content

댓글 보기

Hyun Jin K edited this page Feb 26, 2019 · 2 revisions

URL

[GET] ~/cms/reply

메소드 파라미터명 설명
header token 유저 token
header Content-Type application/json
body article_id 글 아이디

응답예시

{
    "status": 3200,
    "success": true,
    "message": "댓글 작성 성공",
    "data": [
        {
            "idx": 1,
            "article_id": 1,
            "writer": 1,
            "content": "안녕하세",
            "writetime": "2019-02-25T03:06:34.000Z",
            "parent": 0,
            "depth": 0,
            "like_cnt": 1,
            "dislike_cnt": 1,
            "rereply": [
                {
                    "idx": 3,
                    "article_id": 1,
                    "writer": 1,
                    "content": "",
                    "writetime": "2019-02-25T03:12:23.000Z",
                    "parent": 1,
                    "depth": 1,
                    "like_cnt": 0,
                    "dislike_cnt": 0
                },
                {
                    "idx": 4,
                    "article_id": 1,
                    "writer": 1,
                    "content": "입니",
                    "writetime": "2019-02-25T03:12:37.000Z",
                    "parent": 1,
                    "depth": 2,
                    "like_cnt": 0,
                    "dislike_cnt": 0
                }
            ]
        },
        {
            "idx": 2,
            "article_id": 1,
            "writer": 1,
            "content": "잘부탁드립니",
            "writetime": "2019-02-25T03:11:25.000Z",
            "parent": 0,
            "depth": 0,
            "like_cnt": 0,
            "dislike_cnt": 0,
            "rereply": []
        }
    ]
}

댓글 DB 조회 에러

{
    "status": 3600,
    "success": false,
    "message": "댓글 읽기 에러"
}