-
Notifications
You must be signed in to change notification settings - Fork 0
Create post
김은우 edited this page Jun 3, 2020
·
10 revisions
Context-type : multipart/form-data
POST /api/post
header
{
"Cookie":"쿠키 값",
}
body
{
"content":"안녕하세요 #냥스타그램",
"image":"345.jpg",
}
- 이미지 업로드 참고: https://github.com/team-nutee/NUTEE-WEB/wiki/Upload-images
- 이미지 업로드시 이미지 주소가 src로 전송된다
Success : 200
{
"id": 3,
"content": "안녕하세요 #냥스타그램",
"isDeleted": false,
"isBlocked": false,
"createdAt": "2020-03-19T05:58:20.000Z",
"updatedAt": "2020-03-19T06:06:31.000Z",
"UserId": 1,
"RetweetId": null,
"User": {
"id": 1,
"nickname": "aaa"
},
"Images": ["345.jpg"],
"Likers": []
}
Fail : 401 로그인을 하지 않았을 때
{
"message": "로그인이 필요합니다."
}