如何使用 google feed api 检测 feed 更新
因为我运行一个博客聚合网站,该网站每小时检查大量 RSS 提要是否有新帖子,所以如果可以使用 google feed api 或 Google AJAX Feed API 而不是让 cron 作业读取整个 feed 以了解其是否更新。 像这样链接文本
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Google Feed API,但是您仍然需要每小时轮询 google feed API,而不是每小时轮询一次 feed 源。 它不会通知您提要更新。 如果您想在更新源时收到通知,那么您应该考虑使用 ping 服务器,http:// /en.wikipedia.org/wiki/Ping_blog 确定提要何时更新,以便您知道是时候再次获取提要了。 并非所有提要都使用 ping 服务器,但它可能会对那些使用 ping 服务器的提要有所帮助。
You can use the Google Feed API, however instead of polling the feed source every hour you will still need to poll the google feed API every hour. It doesn't notify you of feed updates. If you want to be notified when to update feeds, then you should look into using a ping server, http://en.wikipedia.org/wiki/Ping_blog to determine when feeds are updated so that you know it is time to fetch the feed again. Not all feeds use a ping server, but it might help you for those that do.
正如 Nanek 所说,当 Feed 发生更改时,Google Feed API 不会通知您...为此,您必须使用 PubSubHubbub 协议或 Superfeedr,它是 Google Feed API 的替代方案。
As Nanek said, the Google Feed API won't notify you when a feed is changed... for this you'll have to use the PubSubHubbub protocol or services like Superfeedr which is a Google Feed API alternative.