稍后读 · 极速版支持包含本地快照的检索 & 稍后读 API 方案
🔗 永久链接 | 更新日志 | 知乎专栏 | Newsletter
🖥 下载地址
Onedrive@世纪互联 | 夸克网盘 | 百度网盘 | Box.net | 更多版本
🔍 稍后读 · 极速版 - 全文检索
📝 描述
在右上角的搜索框输入 all:xxx 即可得到包含本地快照命中内容的稍后读。
🖼️ 效果
在 Timeline 访问的效果

在其他视图下因为受限于界面有限,所以当使用此功能时会弹出对话框方式。

🔌 API
读取 simpread_config.json 中的 unrdist 字段,支持多维度筛选与响应裁剪。
⚙️ 设置
此功能可直接使用,支持多维度检索颗粒 https://simpread.pro/docs/#/API
同时也支持增加 Token 用于保护你的数据 https://simpread.pro/docs/#/稍后读外部访问
🚀 快速开始
curl "http://localhost:7026/api/unrdist?date=last30&tags=科技史话/AI战争"
📋 接口说明
GET /api/unrdist
所有参数均为可选,通过 URL query string 传递,参数之间为 AND 关系(同时满足)。
无参数时返回全部 unrdist 条目。
🔍 支持的检索参数
| 参数 | 搜索格式 | API 参数 |
|---|---|---|
title:xxx |
?title=xxx |
title 子串匹配 |
tags:xxx |
?tags=xxx |
逗号分隔,AND + 子串匹配 |
url:xxx |
?url=xxx |
url 子串匹配 |
desc:xxx |
?desc=xxx |
desc 字段子串匹配 |
note:xxx |
?note=xxx |
等同于 desc |
idx:123 |
?idx=123 |
idx 精确匹配 |
date:xxx |
?date=xxx |
today/yesterday/daily/week/last7/last30/2026年05月27日/2026-05-27 |
all:xxx |
?all=xxx |
全文搜索(title + desc + 本地快照 HTML 内容) |
annotations.text:xxx |
?annotations.text=xxx |
标注文本子串匹配 |
annotations.tags:xxx |
?annotations.tags=xxx |
标注标签逗号分隔,AND + 子串 |
额外控制参数(可与上述组合):
| 参数 | 说明 |
|---|---|
include |
full(默认)/ unread(去掉 annotations)/ light(annotations 轻量) |
fields |
逗号分隔字段名,裁剪返回(如 fields=title,idx,tags) |