新增 获取收藏夹内容明细列表API 返回json中data对象字段 (#916)

新增 获取收藏夹内容明细列表API 返回json中data对象字段:has_more与ttl
This commit is contained in:
mizuhokaga 2023-12-24 23:44:28 +08:00 committed by GitHub
parent eb2e61e256
commit 547f07e765
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,8 @@
| ------ | ----- | ------------ | ---- |
| info | obj | 收藏夹元数据 | |
| medias | array | 收藏夹内容 | |
| has_more | bool | 收藏夹是否有下一页 | |
| ttl | num | 接口返回时间 | 时间戳 |
`data`中的`info`对象:
@ -319,7 +321,8 @@ curl -G 'https://api.bilibili.com/x/v3/fav/resource/list' \
"season": null
}
],
"has_more": true
"has_more": true,
"ttl": 1703349018
}
}
```