Skip to content

Like comment

김은우 edited this page May 13, 2020 · 1 revision

댓글 좋아요

Content-type : application/json

POST /api/post/comment/:id/like

Request

head

{
	"Cookie":"쿠키 값",
}

body

{
	"id": 1,
}

Response

Success : 200

{
    "comment": {
        "id": 1,
        "content": "ㅎㅇㅎㅇ",
        "isDeleted": false,
        "createdAt": "2020-04-11T11:32:31.000Z",
        "updatedAt": "2020-04-11T11:32:31.000Z",
        "UserId": 2,
        "PostId": 1,
        "ParentId": null,
        "Post": {
            "id": 1
        }
    },
    "commentLiker": 3
}

Fail : 401 로그인이 안되어 있을 경우

     "존재하지 않는 사용자입니다!"

Fail : 404 댓글이 존재하지 않을 경우

     "댓글이 존재하지 않습니다."
Clone this wiki locally