엔드 포인트 (Endpoint)
•
Method: POST
•
URL: /comment/like/{commentId}
요청 파라미터 (Request Parameters)
Parameter | Type | Required | Description |
commentId | Long | Yes | 댓글 ID |
헤더 정보 (Headers)
Header | Description |
Authorization | Bearer {token} |
Content-Type | application/json |
요청 예시 (Request Example)
•
요청
POST /comment/like/1
Content-Type: application/json
Authorization: Bearer {token}
Plain Text
복사
응답 (Response)
•
HTTP Status Codes:
◦
200 OK: 좋아요 처리 성공.
◦
404 Not Found: 해당 ID의 게시글을 찾을 수 없음.
•
응답 예시
HTTP/1.1 200 OK
// 좋아요 새로 누른 경우
{
true
}
JSON
복사
HTTP/1.1 200 OK
// 이미 눌린 좋아요 누른 경우 (취소)
{
false
}
JSON
복사
•
오류 발생
{
"code": "COMMENT_NOT_FOUND",
"message": "해당 댓글을 찾을 수 없습니다.",
"status": 404
}
JSON
복사