API 명세 이모지 의미
엔드 포인트 (Endpoint)
•
Method: GET
•
URL: /board/{boardType}/{postId}
요청 파라미터 (Request Parameters)
Parameter | Type | Required | Description |
boardType | String | Yes | 게시판 타입 (예: FREE, MARKET, INFO, …) |
postId | Long | Yes | 게시글 ID |
헤더 정보 (Headers)
Header | Description |
Authorization | Bearer {token} |
Content-Type | application/json |
요청 예시 (Request Example)
•
요청
GET /board/FREE/123
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": 3,
"title": "서브스트링 테스트",
"content": "게시글 내용이 긴 경우에는 어떻게 처리가 될까요?? 서브스트링이 잘 되는지 궁금합니다.",
"type": "FREE",
"views": 6,
"createdAt": "2024-11-03T20:48:54.16581Z",
"author": {
"token": "token1",
"nickname": "user1nick",
"profileImage": "https://example.com/user1.png",
"univName": "University 1"
},
"photos": [
"https://union-image-bucket.s3.ap-northeast-2.amazonaws.com/userToken/50fea775-346f-4a3e-af61-81bcb348606b.png",
"https://union-image-bucket.s3.ap-northeast-2.amazonaws.com/userToken/a21d1a45-7669-4fed-ba56-3246305fa63d.png",
"https://union-image-bucket.s3.ap-northeast-2.amazonaws.com/userToken/a61e594e-7c30-4938-8d2d-2f1aef675e1a.jpg"
]
}
JSON
복사
•
오류 발생
{
"code": "POST_NOT_FOUND",
"message": "해당 ID의 게시글을 찾을 수 없습니다.",
"status": 404
}
JSON
복사