-
Notifications
You must be signed in to change notification settings - Fork 0
Like comment
김은우 edited this page May 13, 2020
·
1 revision
Content-type : application/json
POST /api/post/comment/:id/like
head
{
"Cookie":"쿠키 값",
}
body
{
"id": 1,
}
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 댓글이 존재하지 않을 경우
"댓글이 존재하지 않습니다."