Comment 생성
하나의 포스트 객체에 코멘트 객체를 생성하여 연결합니다.
METHOD & URL
POST /post/[id값]/comments/
Permission
등록된 유저만
Request
Header
Authorization: 유저 인증 정보
Body
아래의 항목들을 request body에 담아 POST 요청을 보낸다.
comment_track: 작성자 트랙. 필수항목.instrument: 악기.
Success Response
HTTP Response
201 Created
Content
{
"id": 코멘트 id ,
"author": "작성자 닉네임",
"post": "연결된 포스트",
"comment_track": "코멘트 트랙 주소",
"instrument": "코멘트 트랙 악기"
}