From 547f07e765c0b92c3e61ad698d36c25032ad63e8 Mon Sep 17 00:00:00 2001 From: mizuhokaga Date: Sun, 24 Dec 2023 23:44:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E6=94=B6=E8=97=8F=E5=A4=B9=E5=86=85=E5=AE=B9=E6=98=8E=E7=BB=86?= =?UTF-8?q?=E5=88=97=E8=A1=A8API=20=E8=BF=94=E5=9B=9Ejson=E4=B8=ADdata?= =?UTF-8?q?=E5=AF=B9=E8=B1=A1=E5=AD=97=E6=AE=B5=20(#916)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增 获取收藏夹内容明细列表API 返回json中data对象字段:has_more与ttl --- docs/fav/list.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/fav/list.md b/docs/fav/list.md index 0d57e190a5..1b1b8113ce 100644 --- a/docs/fav/list.md +++ b/docs/fav/list.md @@ -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 } } ```