如何设置 Google 阅读器订阅标题中的链接位置

发布于 2024-08-04 00:11:50 字数 383 浏览 3 评论 0原文

我的应用程序中有一个使用 atom_feed 构建的 Atom Feed,并且它正在工作,只不过当在 Google 阅读器中订阅该 Feed 时,它用于订阅标题的链接会指向到错误的网址。

我尝试指定 root_url 参数,如下所示:

atom_feed(:root_url => 'http://link.to/proper.page') do |f|
  ...
end

这更改了 元素的 href 值已生成,但 Reader 中的链接保持不变。我似乎无法在谷歌阅读器文档中找到任何有关此问题的帮助。

I've got an atom feed in my application that's build using atom_feed, and it's working, except that when the feed is subscribed to in Google Reader, the link it uses for the title of the subscription is pointing to the wrong URL.

I tried specifying the root_url parameter as such:

atom_feed(:root_url => 'http://link.to/proper.page') do |f|
  ...
end

Which has changed the href value for the <link type="text/html" rel="alternate" /> element generated, but the link in Reader stays the same. I cannot seem to find any help on this in the google reader documentation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

相思碎 2024-08-11 00:11:50

:url 选项应该执行此操作,而不是 :root_url

我仍然感到惊讶,因为它默认为当前 URL。我从来没有必要指定它。

The :url option should do it, not :root_url.

I am still surprised since it defaults to the current URL. I've never had to specify it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文