API 명세 이모지 의미
엔드 포인트 (Endpoint)
•
Method: GET
•
URL: /likes/{postId}
요청 파라미터 (Request Parameters)
Parameter | Type | Required | Description |
postId | Long | Yes | 게시글 ID |
헤더 정보 (Headers)
Header | Description |
Authorization | Bearer {token} |
Content-Type | application/json |
요청 예시 (Request Example)
•
요청
GET /likes/{postId}
Content-Type: application/json
Authorization: Bearer {token}
Plain Text
복사
응답 (Response)
•
HTTP Status Codes:
◦
200 OK: 게시글 좋아요 수 조회 성공.
◦
404 Not Found: 해당 ID의 게시글을 찾을 수 없음.
•
응답 예시
HTTP/1.1 200 OK
{
"postLikes": 33,
"liked": true -> 내가 좋아요 눌렀는지 아닌지 여부
}
JSON
복사
•
오류 발생
{
"code": "POST_NOT_FOUND",
"message": "해당 ID의 게시글을 찾을 수 없습니다.",
"status": 404
}
JSON
복사