如何设置 Google 阅读器订阅标题中的链接位置
我的应用程序中有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
: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.