返回提交历史
Modified
docs/fav/list.md
+4
-1
XFEstudio/bilibili-API-collect
新增 获取收藏夹内容明细列表API 返回json中data对象字段 (#916)
新增 获取收藏夹内容明细列表API 返回json中data对象字段:has_more与ttl
547f07e
代码差异
1 个文件
+4
-1
@@ -39,6 +39,8 @@
39
39
| ------ | ----- | ------------ | ---- |
40
40
| info | obj | 收藏夹元数据 | |
41
41
| medias | array | 收藏夹内容 | |
42
| has_more | bool | 收藏夹是否有下一页 | |
43
| ttl | num | 接口返回时间 | 时间戳 |
42
44
43
45
`data`中的`info`对象:
44
46
@@ -319,7 +321,8 @@ curl -G 'https://api.bilibili.com/x/v3/fav/resource/list' \
319
321
"season": null
320
322
}
321
323
],
322
"has_more": true
324
"has_more": true,
325
"ttl": 1703349018
323
326
}
324
327
}
325
328
```