如何获取 html 页面中的 RSS url?
许多 html 页面都有一个 RSS feed 的 URL 链接。如果您使用过谷歌阅读器,您会看到如果您添加站点网址(即:codemacro.com),它会自动查找rss feed url,即codemacro.com/feed。那么,我的问题是,如何自动找到 rss url?
谢谢。
Many html page has an url link to the RSS feed. If you have used google reader, you'll see if you add a site url (i.e: codemacro.com), it will automatically find the rss feed url which is codemacro.com/feed. So, my question is, how to find the rss url automatically?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在
中查找可为您提供所需 Feed 类型的
。大多数带有提要的网站都有如下链接:
在其
中。因此,您需要找到与您使用的任何编程语言的链接。
You need to look for the
<link>
s in the<head>
that give you the type of feed you are looking for. Most sites with feeds have links like:in their
<head>
. So you need to find those links with whatever programming language you are using.RSS Feed 通常通过
元素链接,或者使用扩展名为
.rss
的普通链接。浏览器可以识别两者中的任何一个并显示正确的选项。
The RSS Feed is generally linked via either
<link>
element, or with a normal<a>
link whose extension is.rss
The browser recognizes either of the two and displays proper options.