-
Notifications
You must be signed in to change notification settings - Fork 0
새 게시글 작성하기
Suzie edited this page Apr 3, 2021
·
1 revision
메소드 | 경로 | 뷰 | 요청 사항 |
---|---|---|---|
POST | /post/:QuestionIdx | 새 게시글 작성하기 |
{
"Content-Type":"multipart/form-data; boundary=<calculated when request is sent>",
"jwt":"jwdlsakgtoetaseldkj"
}
form-data
key | 형식 | 설명 |
---|---|---|
image | file | 사진파일 |
postString | STRING | 설명 |
{
"status": 200,
"success": true,
"message": "이미지 포함된 답변 추가 완료"
}
- 토큰 만료
{
"status": 401,
"success": false,
"message": "토큰 값이 만료되었습니다."
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "서버 내부 에러"
}