如何获取 html 页面中的 RSS url?

发布于 2025-01-04 12:22:03 字数 158 浏览 0 评论 0原文

许多 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 技术交流群。

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

发布评论

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

评论(2

阳光①夏 2025-01-11 12:22:03

您需要在 中查找可为您提供所需 Feed 类型的 。大多数带有提要的网站都有如下链接:

<link rel="alternate" type="application/rss+xml" title="RSS" href="http://rss.news.yahoo.com/rss/tech">

在其 中。因此,您需要找到与您使用的任何编程语言的链接。

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:

<link rel="alternate" type="application/rss+xml" title="RSS" href="http://rss.news.yahoo.com/rss/tech">

in their <head>. So you need to find those links with whatever programming language you are using.

段念尘 2025-01-11 12:22:03

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.

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