-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 게시글 읽기
Kim Jinuk edited this page Nov 26, 2021
·
1 revision
메소드 | 경로 | 뷰 | 설명 |
---|---|---|---|
GET | /post/{id} | post | 게시글 읽기 |
{
"status": 200,
"success": true,
"message": "게시글 조회 성공",
"data": {
"exist": {
"tagName": "디자이너",
"subject": "후배가 내 파트장이 된다면???",
"nickname": "박정훈",
"duty": "안드로이드",
"contents": "제가 성격이 급한 편이긴 한데..\n어떻게 잘 가르쳐야 할까요?",
"commentCnt": 80,
"likeCnt": 564
}
}
}
- 해당 id 의 게시글이 없을 경우
{
"status": 404,
"success": false,
"message": "존재하지 않는 게시글입니다."
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "서버 내부 에러"
}