Google Reader API - 如何通过文章网址而不是项目 ID 进行分享?
我对非官方阅读器 API 进行了大量研究,并筛选了其他问题,但没有一个完全符合我想要的。如果您知道文章 id 有详细记录,如何共享文章,但我想知道如果您不知道 id,如何共享文章(即如何转换 url -> id 或如何直接使用url 作为参数)。
我认为这是可能的,因为该功能几乎模仿了他们拥有的令人敬畏的“阅读器中的注释”书签的行为。
谢谢!
I've done a decent amount of research on the unofficial reader api and sifted through other questions, but none of them quite have what I want. How to share an article if you know the article id is well documented, but I want to know how to share an article if you don't know the id (i.e. how to transform url -> id or how to share directly using the url as a parameter).
I imagine it is possible, because the functionality pretty much mimics the behavior of the awesome "Note in Reader" bookmarklet they have.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“阅读器中的注释”小书签最终会将 POST 发送到 http://www. google.com/reader/api/0/item/edit 包含以下参数:
client
:您的客户端 IDT
:操作令牌url: 项目 url
title
: 标题(解释为纯文本)snippet
: 正文(解释为 HTML)share
: true 或 falsetags
:应用于创建的注释的附加标签,例如 user/-/label/foo (可选,如果您想添加多个标签,请重复该参数)srcUrl
:注释的 URL源站点srcTitle
:源站点的标题The "Note in Reader" bookmarklet ends up sending a POST to http://www.google.com/reader/api/0/item/edit with these parameters:
client
: your client IDT
: action tokenurl
: item urltitle
: title (interpreted as plain text)snippet
: body (interpreted as HTML)share
: true or falsetags
: additional tag to apply to the created note, e.g. user/-/label/foo (optional, repeat the parameter if you wish to add mutliple tags)srcUrl
: URL of the source sitesrcTitle
: title of the source site