阅读API
对于Web的配置
您需要先在设置中启用"Web 服务"。
以下说明假设您的操作在本机进行,且开放端口为1234。
如果您要从远程计算机访问阅读,请将127.0.0.1
替换成手机IP。
请求BODY内容为JSON
字符串,
格式参考这个文件
URL = http://127.0.0.1:1234/saveBookSource
Method = POST
请求BODY内容为JSON
字符串,
格式参考这个文件,为数组格式。
URL = http://127.0.0.1:1234/saveBookSources
URL = http://127.0.0.1:1234/saveRssSources
Method = POST
URL = http://127.0.0.1:1234/getBookSource?url=xxx
URL = http://127.0.0.1:1234/getRssSource?url=xxx
Method = GET
URL = http://127.0.0.1:1234/getBookSources
URL = http://127.0.0.1:1234/getRssSources
Method = GET
请求BODY内容为JSON
字符串,
格式参考这个文件,为数组格式。
URL = http://127.0.0.1:1234/deleteBookSources
URL = http://127.0.0.1:1234/deleteRssSources
Method = POST
key为书源搜索关键词,tag为源链接
URL = ws://127.0.0.1:1235/bookSourceDebug
URL = ws://127.0.0.1:1235/rssSourceDebug
Message = { key: [String], tag: [String] }
URL = http://127.0.0.1:1234/getReplaceRules
Method = GET
请求BODY内容为JSON
字符串,
替换规则参考这个文件。
URL = http://127.0.0.1:1234/deleteReplaceRule
Method = POST
Body = [ReplaceRule]
URL = http://127.0.0.1:1234/saveReplaceRule
Method = POST
Body = [ReplaceRule]
返回测试文本text替换结果
URL = http://127.0.0.1:1234/testReplaceRule
Method = POST
Body = { rule: [ReplaceRule], text: [String] }
若想获取对应的书籍的目录正文 请先插入书籍以启用缓存,如果试读后决定不添加到书籍,请删除书籍
URL = ws://127.0.0.1:1235/searchBook
Message = { key: [String] }
请求BODY内容为JSON
字符串,
格式参考这个文件。
URL = http://127.0.0.1:1234/saveBook
Method = POST
URL = http://127.0.0.1:1234/deleteBook
Method = POST
URL = http://127.0.0.1:1234/getBookshelf
Method = GET
获取APP内的所有书籍。
URL = http://127.0.0.1:1234/getChapterList?url=xxx
Method = GET
获取指定图书的章节列表。
URL = http://127.0.0.1:1234/getBookContent?url=xxx&index=1
Method = GET
获取指定图书的第index
章节的文本内容。
URL = http://127.0.0.1:1234/cover?path=xxxxx
Method = GET
URL = http://127.0.0.1:1234/image?url=${bookUrl}&path=${picUrl}&width=${width}
Method = GET
请求BODY内容为JSON
字符串,
格式参考这个文件。
URL = http://127.0.0.1:1234/saveBookProgress
Method = POST
- 需声明
io.legado.READ_WRITE
权限 providerHost
为包名.readerProvider
, 如io.legado.app.release.readerProvider
,不同包的地址不同,防止冲突安装失败- 以下出现的
providerHost
请自行替换
创建Key="json"
的ContentValues
,内容为JSON
字符串,
格式参考这个文件
URL = content://providerHost/bookSource/insert
URL = content://providerHost/rssSource/insert
Method = insert
创建Key="json"
的ContentValues
,内容为JSON
字符串,
格式参考这个文件,为数组格式。
URL = content://providerHost/bookSources/insert
URL = content://providerHost/rssSources/insert
Method = insert
获取指定URL对应的书源信息。
用Cursor.getString(0)
取出返回结果。
URL = content://providerHost/bookSource/query?url=xxx
URL = content://providerHost/rssSource/query?url=xxx
Method = query
获取APP内的所有订阅源。
用Cursor.getString(0)
取出返回结果。
URL = content://providerHost/bookSources/query
URL = content://providerHost/rssSources/query
Method = query
创建Key="json"
的ContentValues
,内容为JSON
字符串,
格式参考这个文件,为数组格式。
URL = content://providerHost/bookSources/delete
URL = content://providerHost/rssSources/delete
Method = delete
创建Key="json"
的ContentValues
,内容为JSON
字符串,
格式参考这个文件。
URL = content://providerHost/book/insert
Method = insert
获取APP内的所有书籍。
用Cursor.getString(0)
取出返回结果。
URL = content://providerHost/books/query
Method = query
获取指定图书的章节列表。
用Cursor.getString(0)
取出返回结果。
URL = content://providerHost/book/chapter/query?url=xxx
Method = query
获取指定图书的第index
章节的文本内容。
用Cursor.getString(0)
取出返回结果。
URL = content://providerHost/book/content/query?url=xxx&index=1
Method = query
URL = content://providerHost/book/cover/query?path=xxxx
Method = query