👽

베스트 댓글 read

URL
/comment/best/{postId}
댓글
method
GET

단일 댓글 READ API (개발 확인용: 댓글 관련 기능 개발 완료 시 삭제 예정)

엔드 포인트 (Endpoint)

Method: GET
URL: /comment/best/{postId}

요청 파라미터 (Request Parameters)

Parameter
Type
Required
Description
postId
Long
Yes
조회할 게시글의 ID (Path Variable)

헤더 정보 (Headers)

Header
Description
Authorization
Bearer {token}
Content-Type
application/json

요청 예시 (Request Example)

요청
GET /comment/best/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 { "id": 11, "content": "만든 댓글! 이게 베댓이 되어야 함!!", "postId": 1, "parentId": null, "parentNickname": null, "createdAt": "2024-11-06T16:18:57.612462Z", "commentLikes": 4, "liked": true, "deleted": false, "commenter": { "token": "token2", "nickname": "user2nick", "profileImage": "https://example.com/user2.png", "univName": "University 2" } } // 베스트 댓글이 없을 경우 아무 값도 반환되지 않음
JSON
복사
오류 발생
{ "code": "POST_NOT_FOUND", "message": "해당 게시글을 찾을 수 없습니다.", "status": 404 }
JSON
복사