Google Reader API - 如何通过文章网址而不是项目 ID 进行分享?

发布于 2024-10-17 06:36:56 字数 198 浏览 3 评论 0原文

我对非官方阅读器 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

友谊不毕业 2024-10-24 06:36:56

“阅读器中的注释”小书签最终会将 POST 发送到 http://www. google.com/reader/api/0/item/edit 包含以下参数:

  • client:您的客户端 ID
  • T:操作令牌
  • url: 项目 url
  • title: 标题(解释为纯文本)
  • snippet: 正文(解释为 HTML)
  • share: true 或 false
  • tags:应用于创建的注释的附加标签,例如 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 ID
  • T: action token
  • url: item url
  • title: title (interpreted as plain text)
  • snippet: body (interpreted as HTML)
  • share: true or false
  • tags: 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 site
  • srcTitle: title of the source site
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文