Skip to content

Create post

김은우 edited this page Jun 3, 2020 · 10 revisions

게시물 작성

Context-type : multipart/form-data

POST /api/post

Request

header

{
	"Cookie":"쿠키 값",
}

body

{
	"content":"안녕하세요 #냥스타그램", 
	"image":"345.jpg",  
}

Response

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": "로그인이 필요합니다."
}
Clone this wiki locally