继续修改文档格式 补完频道相关接口

This commit is contained in:
SocialSisterYi
2020-07-19 21:56:58 +08:00
parent 33f693dd41
commit 26560f16d9
17 changed files with 386 additions and 86 deletions

View File

@@ -30,11 +30,11 @@ data 对象:
| like | num | 未读点赞数 | |
| reply | num | 未读回复数 | |
| sys_msg | num | 未读系统通知数 | |
| up | num | 0 | 作用尚不明确 |
| up | num | UP主助手信息数 | |
**示例:**
以下信息代表了未读点赞数为10未读回复数为3未读at消息数为1未读系统通知数为1
以下信息代表了未读点赞数为10未读回复数为4未读at消息数为3,未读系统通知数为2UP主助手信息数为1
```shell
curl 'http://api.bilibili.com/x/msgfeed/unread'\
@@ -47,12 +47,12 @@ curl 'http://api.bilibili.com/x/msgfeed/unread'\
"message": "0",
"ttl": 1,
"data": {
"at": 1,
"at": 3,
"chat": 0,
"like": 10,
"reply": 3,
"sys_msg": 1,
"up": 0
"reply": 4,
"sys_msg": 2,
"up": 1
}
}
```