-
Notifications
You must be signed in to change notification settings - Fork 1
comment
bghgu edited this page Jul 7, 2017
·
6 revisions
| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /view | 포스트 댓글 보기 |
Content-Type : application/json
Authorization : eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjo2NywiaWF0IjoxNDk4Nzg1NTA3LCJleHAiOjE1MDEzNzc1MDd9.UPaZF1eLlc_6CN6VkJpPMsIT6ktbg30CpuYhTQSG80M
{
"post_id" : 116
}{
"result": [
{
"comment_id": 9,
"post_id": 116,
"ID": 78,
"contents": "ㅁㄴㅇㅁㄴㄹㅇㄴㄹ",
"comment_date": "2017-07-01T18:08:21.000Z",
"like_counts": 0,
"jobs": "개발자",
"profile_photo": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1498998990983.jpg",
"username": "배다슬",
"comment_counts": 0,
"is_like_clicked": 1
},
{
"comment_id": 10,
"post_id": 116,
"ID": 78,
"contents": "ㅁㄴㅇㅁㄴㄹㅇㄴㄹ",
"comment_date": "2017-07-01T18:08:22.000Z",
"like_counts": 0,
"jobs": "개발자",
"profile_photo": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1498998990983.jpg",
"username": "배다슬",
"comment_counts": 0,
"is_like_clicked": 1
},
{
"comment_id": 11,
"post_id": 116,
"ID": 78,
"contents": "수정할 댓글",
"comment_date": "2017-07-01T18:08:23.000Z",
"like_counts": 0,
"jobs": "개발자",
"profile_photo": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1498998990983.jpg",
"username": "배다슬",
"comment_counts": 0,
"is_like_clicked": 0
}
]
}{
"message": "post does not exist"
}{
"message": "access denied"
}| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /write | 포스트 댓글 작성 |
Content-Type : application/json
Authorization : eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjo2NywiaWF0IjoxNDk4Nzg1NTA3LCJleHAiOjE1MDEzNzc1MDd9.UPaZF1eLlc_6CN6VkJpPMsIT6ktbg30CpuYhTQSG80M
{
"post_id" : 78,
"contents" : "댓글 내용 작성"
}{
"message": "comment writing success"
}{
"message": "comment writing failed"
}{
"message": "access denied"
}| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /modify | 포스트 댓글 수정 |
Content-Type : application/json
Authorization : eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjo2NywiaWF0IjoxNDk4Nzg1NTA3LCJleHAiOjE1MDEzNzc1MDd9.UPaZF1eLlc_6CN6VkJpPMsIT6ktbg30CpuYhTQSG80M
{
"content_id" : 11,
"contents" : "수정한 댓글 내용"
}{
"message": "comment modify success"
}{
"message": "comment does not exist"
}{
"message": "access denied"
}| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /delete | 포스트 댓글 삭제 |
Content-Type : application/json
Authorization : eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjo2NywiaWF0IjoxNDk4Nzg1NTA3LCJleHAiOjE1MDEzNzc1MDd9.UPaZF1eLlc_6CN6VkJpPMsIT6ktbg30CpuYhTQSG80M
{
"comment_id" : 11
}{
"message": "comment delete success"
}{
"message": "comment does not exist"
}{
"message": "access denied"
}