[关闭]
@chengxuyuan 2020-03-23T10:07:25.000000Z 字数 3342 阅读 388

日记文档

社区


新建日记

Method and URL Structure

Method Method Resource URL Descriptions Authentications Required
POST /server/community/create_diary/ 新建日记 YES

Request

  1. {
  2. "title":"日记标题",
  3. "content":"内容",
  4. "mood":"心情",
  5. "tag_date":"2019-02-02"
  6. }

Response Parameters

Name Description
pk 日记 pk
owner 日记作者信息
title 日记标题
mood 心情
content 内容
update_time 最近更新时间
create_time 新建时间
tag_date 关联日期

Response

  1. {
  2. "pk": 1,
  3. "owner": {
  4. "name": "勿问情殇2",
  5. "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658",
  6. "user": "15201052252",
  7. "nickname": "chen",
  8. "realname": "陈微",
  9. "user_id": 367,
  10. "is_staff": false,
  11. "segment": {
  12. "name": "白银",
  13. "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png"
  14. }
  15. },
  16. "title": "日记标题",
  17. "mood": "心情",
  18. "content": "内容",
  19. "update_time": "2020-03-20T15:24:08.382943",
  20. "create_time": "2020-03-20T15:24:08.382393",
  21. "tag_date": "2019-02-02"
  22. }

日记详情

Method and URL Structure

Method Method Resource URL Descriptions Authentications Required
GET /server/community/detail_diary/${pk}/ 详情 YES

Response

  1. {
  2. "pk": 1,
  3. "owner": {
  4. "name": "勿问情殇2",
  5. "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658",
  6. "user": "15201052252",
  7. "nickname": "chen",
  8. "realname": "陈微",
  9. "user_id": 367,
  10. "is_staff": false,
  11. "segment": {
  12. "name": "白银",
  13. "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png"
  14. }
  15. },
  16. "title": "日记标题",
  17. "mood": "心情",
  18. "update_time": "2020-03-20T15:24:08.382943",
  19. "create_time": "2020-03-20T15:24:08.382393",
  20. "tag_date": "2019-02-02"
  21. }

日记详情的内容

Method and URL Structure

Method Method Resource URL Descriptions Authentications Required
GET /server/community/content_diary/${pk}/ 内容详情 YES

Response

  1. {
  2. "pk": 1,
  3. "owner": {
  4. "name": "勿问情殇2",
  5. "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658",
  6. "user": "15201052252",
  7. "nickname": "chen",
  8. "realname": "陈微",
  9. "user_id": 367,
  10. "is_staff": false,
  11. "segment": {
  12. "name": "白银",
  13. "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png"
  14. }
  15. },
  16. "title": "哈哈哈",
  17. "mood": "难过",
  18. "content": "内容",
  19. "update_time": "2020-03-20T16:24:02.447385",
  20. "create_time": "2020-03-20T15:24:08.382393",
  21. "tag_date": "2019-02-02"
  22. }

修改日记

Method and URL Structure

Method Method Resource URL Descriptions Authentications Required
PUT /server/community/update_diary/${pk}/ 编辑日记 YES

Request

  1. {
  2. "title":"哈哈哈",
  3. "content":"哈哈哈",
  4. "mood":"难过"
  5. }

Response

  1. {
  2. "pk": 1,
  3. "owner": {
  4. "name": "勿问情殇2",
  5. "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658",
  6. "user": "15201052252",
  7. "nickname": "chen",
  8. "realname": "陈微",
  9. "user_id": 367,
  10. "is_staff": false,
  11. "segment": {
  12. "name": "白银",
  13. "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png"
  14. }
  15. },
  16. "title": "哈哈哈",
  17. "mood": "难过",
  18. "update_time": "2020-03-20T16:24:02.447385",
  19. "create_time": "2020-03-20T15:24:08.382393",
  20. "tag_date": "2019-02-02"
  21. }

日记列表

Method and URL Structure

Method Method Resource URL Descriptions Authentications Required
GET /server/community/list_diary/ 列表 YES

Response

  1. {
  2. "count": 1,
  3. "next": null,
  4. "previous": null,
  5. "results": [
  6. {
  7. "pk": 1,
  8. "owner": {
  9. "name": "勿问情殇2",
  10. "avatar": "https://static1.bcjiaoyu.com/bcgame_face2face/15201052252/5690023e83a72af4ff5be0badaadfbe4_k.gif-658x658",
  11. "user": "15201052252",
  12. "nickname": "chen",
  13. "realname": "陈微",
  14. "user_id": 367,
  15. "is_staff": false,
  16. "segment": {
  17. "name": "白银",
  18. "image": "https://static1.bcjiaoyu.com/community/touxiangkuangking.png"
  19. }
  20. },
  21. "title": "哈哈111哈",
  22. "mood": "难过",
  23. "update_time": "2020-03-20T16:35:25.302607",
  24. "create_time": "2020-03-20T15:24:08.382393",
  25. "tag_date": "2019-02-02"
  26. }
  27. ]
  28. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注