removedInput schema / properties / page
Removed value: -{
- "default": 1,
- "description": "页码,从 1 开始",
- "type": "integer"
-}
changedInput schema / properties / page_id / description
Previous value: -"小红书话题/标签页 page_id。"New value: +"小红书标签页 page_id。"
removedInput schema / properties / page_size
Removed value: -{
- "default": 20,
- "description": "每页笔记数量",
- "type": "integer"
-}
addedInput schema / properties / page_token
Added value: +{
+ "default": "",
+ "description": "分页令牌。首次请求留空;继续翻页时必须将上一页返回的完整 next_page_token 原样作为 page_token 传回。page_token 是不透明分页令牌,只绑定当前标签页和排序链路,不能跨 page_id 或排序复用;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。",
+ "type": "string"
+}
removedInput schema / properties / sort
Removed value: -{
- "default": "hot",
- "description": "话题/标签页笔记排序方式,可选:hot(最热,默认)、time(最新)",
- "enum": [
- "hot",
- "time"
- ],
- "type": "string"
-}
addedInput schema / properties / sort_type
Added value: +{
+ "default": "hot",
+ "description": "标签页笔记排序方式,可选:hot(最热,默认)、time_descending(最新)",
+ "enum": [
+ "hot",
+ "time_descending"
+ ],
+ "type": "string"
+}
removedOutput schema / properties / has_more
Removed value: -{
- "description": "是否还有下一页",
- "type": "boolean"
-}
changedOutput schema / properties / items / description
Previous value: -"话题页笔记列表"New value: +"标签页笔记列表"
addedOutput schema / properties / items / items / additionalProperties
Added value: +false
addedOutput schema / properties / items / items / properties / image_items
Added value: +{
+ "description": "图片结构化明细;无图片时为空数组",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "image_url": {
+ "description": "图片链接",
+ "type": "string"
+ },
+ "live_photo": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "duration_ms": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Live 图时长,单位毫秒;没有时长时为 null"
+ },
+ "video_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Live 图视频链接;没有视频链接时为 null"
+ }
+ },
+ "required": [
+ "video_url",
+ "duration_ms"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Live 图视频摘要;普通图片或没有视频摘要时为 null"
+ }
+ },
+ "required": [
+ "image_url",
+ "live_photo"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / properties / items / items / properties / note_id / description
Previous value: -"note_id 是 24 位小写十六进制稳定笔记 ID。必须原样复制搜索、详情、评论或用户发帖列表返回的完整 note_id;不得截断、缩写、脱敏、补全、格式化、重组,也不得只传前缀。"New value: +"note_id 是 24 位小写十六进制稳定笔记 ID。必须原样复制搜索、详情、评论、标签页笔记或用户发帖列表返回的完整 note_id;不得截断、缩写、脱敏、补全、格式化、重组,也不得只传前缀。"
changedOutput schema / properties / items / items / properties / note_url / description
Previous value: -"可打开笔记内容的完整 URL;没有可用链接时为 null"New value: +"note_url 是可打开笔记内容所需的完整 URL。任何使用该返回链接的场景都必须原样保留完整 URL,包括 xsec_token 等 query 参数;例如最终回答、展示、引用、存储、输出或传递;不得修改、截断、脱敏、规范化、重组,也不得用 note_id 重新拼接链接。无法提供可用链接时为 null;note_url 为 null 时不要用 note_id 合成公开链接。"
removedOutput schema / properties / items / items / properties / summary
Removed value: -{
- "description": "笔记摘要;不是全文",
- "type": "string"
-}
changedOutput schema / properties / items / items / properties / video / anyOf
Previous value: -[
- {
- "properties": {
- "duration_ms": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频原始时长,单位毫秒;没有时长时为 null"
- },
- "video_url": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频链接;没有视频链接时为 null"
- }
- },
- "required": [
- "video_url",
- "duration_ms"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "duration_ms": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频原始时长,单位毫秒;没有时长时为 null"
+ },
+ "video_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频链接;没有视频链接时为 null"
+ }
+ },
+ "required": [
+ "video_url",
+ "duration_ms"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / items / items / required
Previous value: -[
- "note_url",
- "note_id",
- "note_type",
- "title",
- "summary",
- "cover_image_url",
- "like_count",
- "collect_count",
- "publish_time",
- "video",
- "author"
-]New value: +[
+ "note_url",
+ "note_id",
+ "note_type",
+ "title",
+ "cover_image_url",
+ "image_items",
+ "video",
+ "like_count",
+ "collect_count",
+ "publish_time",
+ "author"
+]
addedOutput schema / properties / next_page_token
Added value: +{
+ "description": "下一页不透明分页令牌;非空表示可尝试请求下一页,为空表示当前没有可继续的下一页令牌。继续翻页时必须将返回的完整 next_page_token 原样作为 page_token 传回。next_page_token 只绑定当前标签页和排序链路,不能跨 page_id 或排序复用;items 为空时不要单独据此判断结束;不得修改、截断、缩写、脱敏、掩码、省略、规范化、重组或自行生成,不得用省略号替换中间内容。",
+ "type": "string"
+}
changedOutput schema / properties / total_note_count / description
Previous value: -"话题页笔记总数"New value: +"标签页笔记总数"
changedOutput schema / properties / total_user_count / description
Previous value: -"话题页涉及用户总数"New value: +"标签页涉及用户总数"
changedOutput schema / required
Previous value: -[
- "items",
- "has_more",
- "total_note_count",
- "total_user_count"
-]New value: +[
+ "items",
+ "next_page_token",
+ "total_note_count",
+ "total_user_count"
+]