笔记本概览
list_notebooksGet all books that have notes from WeChat Reading, with counts of highlights, reviews, and bookmarks, using cursor pagination for large libraries.
Instructions
列出所有有笔记的书(/user/notebooks)。
字段口径:
- `books[].noteCount` 是**划线(高亮原文)条数**,不是该书总笔记数。
- 单本书总笔记数 = `reviewCount + noteCount + bookmarkCount`。
- `reviewCount` 已包含个人点评/书评想法,不要再额外加「点评数」,否则重复计算。
- 本接口不返回 `highlightCount`;「高亮数/划线数」对应的是 `noteCount`。
分页只支持游标:首次只传 `count`,`hasMore=1` 时取本页最后一项的 `sort`
作为下一次的 `last_sort`;**不支持** offset/limit。需要完整排行时循环到 `hasMore=0`。
`_computed.noteCountByBook` 是本服务端按公式算好并降序排序的结果。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | 每页数量,默认 20 | |
| last_sort | No | 翻页游标:上一页 books 最后一项的 sort 值。首页不传。 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||