如何为任何网页制作提要生成器?

发布于 2024-11-05 10:57:34 字数 108 浏览 0 评论 0原文

Feedity 为任何网页提供提要地址,我想制作一个这样的应用程序。

他们是如何实施的?

Feedity makes feeds address for any webpages and I would like to make an application like this.

How did they implement it?

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

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

发布评论

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

评论(1

淡紫姑娘! 2024-11-12 10:57:34

这看起来有点像 yql,它可以用于类似的事情。鉴于 HTML可以是 XML,并且 RSS 提要也是 XML,因此实现起来应该不会太困难。如果我要对此进行自定义实现,我可能会尝试以下操作:

  1. 从请求的 url 中提取 html
  2. 清理 HTML,以便将其转换为 XML(或使用类似 HTML Agility Pack
  3. 使用 XSLT 根据一组规则(提取链接等)将 XML 文档转换为 RSS 提要

。有人说过,如果我可以使用像 yql 这样的东西,我肯定会这样做,因为自定义实现中可能存在很多陷阱(糟糕的 html、更改 url、定义规则、缓存等)

This looks a little like yql, which can be used for something similar. Given that HTML can be XML, and RSS feeds are XML as well, this should not be too difficult to implement. If I were to approach a custom implementation of this, I would probably attempt the following:

  1. Pull in html from the requested url
  2. Cleanse the HTML so it could be converted to XML (or use something like the HTML Agility Pack)
  3. Use XSLT to translate the XML document into an RSS feed based on a set of rules (that extract links, etc.)

All of that having been said, if I could use something like yql instead, I would definitely do that, as there can be a lot of pitfalls in the custom implementation (bad html, changing url's, defining rules, caching, etc.)

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