- 서비스 포트 : 8081
- 게시글 생성
- /post/create
- 게시글 type : public, group, groupOnly
{ "type": "public | group | groupOnly", "content": "게시글 내용", "tag": "태그명", "image": "이미지 경로" }
- 게시글 type : public, group, groupOnly
- /post/create
- 게시글 수정
- /post/modify/{pid}
{ "type": "public | group | groupOnly", "content": "게시글 내용" "tag": "태그명", "image": "이미지 경로" }
- /post/modify/{pid}
- 게시글 삭제
- /post/delete/{pid}
- 좋아요 기능
- /post/toggleLike/{pid}
- 댓글 생성
- /cmt/create/{pid}
{ "content": "댓글 내용" }
- /cmt/create/{pid}
- 댓글 수정
- /cmt/modify/{cid}
{ "content": "댓글 내용" }
- /cmt/modify/{cid}
- 댓글 삭제
- /cmt/delete/{cid}
- 전체 댓글 조회
- /cmt/getAllComments/{pid}
- 특정 댓글 조회
- /cmt/getPidComments/{pid}
- 검색(/search)
- type : tag -> 태그 기반 검색
- type : msg -> 내용 기반 검색
- type : email -> 이메일 기반 검색
- msg : 검색 내용
{ "type": "tag | msg | email", "msg": "검색 내용" }