Skip to content

새 게시글 작성하기

Suzie edited this page Apr 3, 2021 · 1 revision
메소드 경로 요청 사항
POST /post/:QuestionIdx 새 게시글 작성하기

↗️ Request Header

{
    "Content-Type":"multipart/form-data; boundary=<calculated when request is sent>",
    "jwt":"jwdlsakgtoetaseldkj"
}

↗️ Request Body

form-data

key 형식 설명
image file 사진파일
postString STRING 설명

↘️ Response

🔵 success

{
    "status": 200,
    "success": true,
    "message": "이미지 포함된 답변 추가 완료"
}

❌ Fail

  • 토큰 만료
{
    "status": 401,
    "success": false,
    "message": "토큰 값이 만료되었습니다."
}
  • 서버 에러
{
    "status": 500,
    "success": false,
    "message": "서버 내부 에러"
}