Skip to content

Edit post

김은우 edited this page Jun 1, 2020 · 5 revisions

게시물 수정

Context-type : multipart/form-data

PATCH /api/post

Request

header

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

body

{
	"postId":3, 
	"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": [],
    "Likers": []
}

Fail : 404 포스트가 없을 경우

     "message": "수정할 포스트가 존재하지 않습니다."

Fail : 403 사용자의 아이디와 포스트를 작성한 유저의 아이디가 다를 때

     '수정한 권한이 없습니다.'
Clone this wiki locally