Skip to content

리뷰수정

Ji Yeon Kim edited this page Jan 8, 2019 · 1 revision

리뷰 수정

지연

메소드 경로 짧은 설명
PUT /review/{review_id} 리뷰 글 수정

요청 헤더

Content-Type: application/json
Authorization: token

요청 바디

{
        "title" : "타이틀"
	"content" : "댓글 내용"
}

응답 바디

댓글 수정 성공

{
    "status": 200,
    "message": "리뷰 수정 성공",
    "data": {
        "review_id": 29,
        "cafe_id": 1,
        "user_id": "first",
        "user_name": "모카",
        "user_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/commonDefaultimage%403x.png",
        "image": null,
        "review_rating": 1,
        "review_title": "rewgawr000",
        "review_content": "hello00000",
        "review_date": "2019-01-08T13:01:26.000+0000",
        "cafe_name": null,
        "cafe_address": null,
        "time": "방금 전",
        "like_count": 0,
        "comment_count": 0,
        "auth": true,
        "like": false
    }
}

인증 실패

{
    "status" : 401,
    "message" : "인증 실패",
    "data" : null
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "message": "서버 내부 에러",
    "data": null
}
Clone this wiki locally