👽

댓글 목록 read

URL
/comments/{postId}
댓글
method
GET
API 명세 이모지 의미
!!! 댓글 좋아요 관련 commentLikes 뿐만 아니라 isLiked 필드 boolean으로 들어갈 예정이에요
commentCount 최하단에 추가되었습니다 - updated at: 24.11.04 06:08 @누구게용 내가
→넵 확인했습니당 @이지영
deleted 필드 추가되었습니다..!! 자세한 사항은 회의때 얘기해드릴게요! 베스트 댓글에도 deleted 필드 추가됐어요 - updated at: 24.11.09 05:44 @누구게용 내가

엔드 포인트 (Endpoint)

Method: GET
URL: /comments/{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 /comments/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 { "comments": [ { "id": 1, "content": "첫 번째 게시글의 첫 번째 댓글입니다.", "postId": 1, "parentId": null, "parentNickname": null, "createdAt": "2024-11-06T13:11:40Z", "commentLikes": 2, "liked": true, "deleted": false, "commenter": { "token": "token1", "nickname": "user1nick", "profileImage": "https://example.com/user1.png", "univName": "University 1" }, "children": [ { "id": 3, "content": "첫 번째 게시글의 첫 번째 댓글에 대한 대댓글입니다.", "postId": 1, "parentId": 1, "parentNickname": "user1nick", "createdAt": "2024-11-06T13:11:40Z", "commentLikes": 2, "liked": false, "deleted": false, "commenter": { "token": "token3", "nickname": "user3nick", "profileImage": "https://example.com/user3.png", "univName": "University 3" }, "children": [] } ] }, { "id": 2, "content": "첫 번째 게시글의 두 번째 댓글입니다.", "postId": 1, "parentId": null, "parentNickname": null, "createdAt": "2024-11-06T13:11:40Z", "commentLikes": 1, "liked": false, "deleted": false, "commenter": { "token": "token2", "nickname": "user2nick", "profileImage": "https://example.com/user2.png", "univName": "University 2" }, "children": [] } ], "commentCount": 3 }
JSON
복사
오류 발생
{ "code": "POST_NOT_FOUND", "message": "해당 게시글을 찾을 수 없습니다.", "status": 404 }
JSON
복사