日记文档
社区
新建日记
Method and URL Structure
| Method |
Method Resource URL |
Descriptions |
Authentications Required |
| POST |
/server/community/create_diary/ |
新建日记 |
YES |
Request
{ "title":"日记标题", "content":"内容", "mood":"心情", "tag_date":"2019-02-02"}
Response Parameters
| Name |
Description |
| pk |
日记 pk |
| owner |
日记作者信息 |
| title |
日记标题 |
| mood |
心情 |
| content |
内容 |
| update_time |
最近更新时间 |
| create_time |
新建时间 |
| tag_date |
关联日期 |
Response
{ "pk": 1, "owner": { "name": "勿问情殇2", "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658", "user": "15201052252", "nickname": "chen", "realname": "陈微", "user_id": 367, "is_staff": false, "segment": { "name": "白银", "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png" } }, "title": "日记标题", "mood": "心情", "content": "内容", "update_time": "2020-03-20T15:24:08.382943", "create_time": "2020-03-20T15:24:08.382393", "tag_date": "2019-02-02"}
日记详情
Method and URL Structure
| Method |
Method Resource URL |
Descriptions |
Authentications Required |
| GET |
/server/community/detail_diary/${pk}/ |
详情 |
YES |
Response
{ "pk": 1, "owner": { "name": "勿问情殇2", "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658", "user": "15201052252", "nickname": "chen", "realname": "陈微", "user_id": 367, "is_staff": false, "segment": { "name": "白银", "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png" } }, "title": "日记标题", "mood": "心情", "update_time": "2020-03-20T15:24:08.382943", "create_time": "2020-03-20T15:24:08.382393", "tag_date": "2019-02-02"}
日记详情的内容
Method and URL Structure
| Method |
Method Resource URL |
Descriptions |
Authentications Required |
| GET |
/server/community/content_diary/${pk}/ |
内容详情 |
YES |
Response
{ "pk": 1, "owner": { "name": "勿问情殇2", "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658", "user": "15201052252", "nickname": "chen", "realname": "陈微", "user_id": 367, "is_staff": false, "segment": { "name": "白银", "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png" } }, "title": "哈哈哈", "mood": "难过", "content": "内容", "update_time": "2020-03-20T16:24:02.447385", "create_time": "2020-03-20T15:24:08.382393", "tag_date": "2019-02-02"}
修改日记
Method and URL Structure
| Method |
Method Resource URL |
Descriptions |
Authentications Required |
| PUT |
/server/community/update_diary/${pk}/ |
编辑日记 |
YES |
Request
{ "title":"哈哈哈", "content":"哈哈哈", "mood":"难过"}
Response
{ "pk": 1, "owner": { "name": "勿问情殇2", "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658", "user": "15201052252", "nickname": "chen", "realname": "陈微", "user_id": 367, "is_staff": false, "segment": { "name": "白银", "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png" } }, "title": "哈哈哈", "mood": "难过", "update_time": "2020-03-20T16:24:02.447385", "create_time": "2020-03-20T15:24:08.382393", "tag_date": "2019-02-02"}
日记列表
Method and URL Structure
| Method |
Method Resource URL |
Descriptions |
Authentications Required |
| GET |
/server/community/list_diary/ |
列表 |
YES |
Response
{ "count": 1, "next": null, "previous": null, "results": [ { "pk": 1, "owner": { "name": "勿问情殇2", "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658", "user": "15201052252", "nickname": "chen", "realname": "陈微", "user_id": 367, "is_staff": false, "segment": { "name": "白银", "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png" } }, "title": "哈哈111哈", "mood": "难过", "update_time": "2020-03-20T16:35:25.302607", "create_time": "2020-03-20T15:24:08.382393", "tag_date": "2019-02-02" } ]}