style(message): wrap URL with brackets & replace tabs with spaces

This commit is contained in:
晨叶梦春 2025-05-05 02:58:39 +08:00
parent 4c8b0f9ddb
commit e7ff12f04e
No known key found for this signature in database
GPG Key ID: FE72DF87FB90F5E7

View File

@ -2,9 +2,9 @@
## 获取未读消息数
> https://api.bilibili.com/x/msgfeed/unread
> <https://api.bilibili.com/x/msgfeed/unread>
> https://api.vc.bilibili.com/x/im/web/msgfeed/unread (新接口)
> <https://api.vc.bilibili.com/x/im/web/msgfeed/unread> (新接口)
*请求方式GET*
@ -53,7 +53,7 @@
```shell
curl 'https://api.vc.bilibili.com/x/im/web/msgfeed/unread' \
-b 'SESSDATA=xxx'
-b 'SESSDATA=xxx'
```
<details>
@ -61,23 +61,23 @@ curl 'https://api.vc.bilibili.com/x/im/web/msgfeed/unread' \
```json
{
"code": 0,
"message": "0",
"ttl": 1,
"data": {
"at": 3,
"chat": 0,
"coin": 0,
"danmu": 0,
"favorite": 0,
"like": 10,
"recv_like": 10,
"recv_reply": 4,
"reply": 4,
"sys_msg": 2,
"sys_msg_style": 1,
"up": 1
}
"code": 0,
"message": "0",
"ttl": 1,
"data": {
"at": 3,
"chat": 0,
"coin": 0,
"danmu": 0,
"favorite": 0,
"like": 10,
"recv_like": 10,
"recv_reply": 4,
"reply": 4,
"sys_msg": 2,
"sys_msg_style": 1,
"up": 1
}
}
```