gpt4 book ai didi

javascript - Google Feed API 跳过文章?

转载 作者:行者123 更新时间:2023-12-03 11:26:49 25 4
gpt4 key购买 nike

如果没有 API key ,Google feed api 似乎会跳过 RSS 查询中的一些最新文章。

甚至是 https://developers.google.com/feed/v1/devguide?csw=1 中的默认示例无论我使用什么提要,似乎都会跳过一些文章,请参阅此处的示例:http://codepen.io/anon/pen/xbxxwE

<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">

google.load("feeds", "1");

function initialize() {
var feed = new google.feeds.Feed("http://fastpshb.appspot.com/feed/1/fastpshb");
feed.load(function(result) {
if (!result.error) {
var container = document.getElementById("feed");
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
var div = document.createElement("div");
div.appendChild(document.createTextNode(entry.title));
container.appendChild(div);
}
}
});
}
google.setOnLoadCallback(initialize);

</script>

我专门使用这个RSS,http://blog.ncb.org.uk/syndication.axd前两篇文章也没有出现。

还有其他人使用该 API 并遇到同样的问题吗?我们应该去哪里? Feed API 是否有某种支持?

干杯,

最佳答案

谷歌 caches the results并且可能需要一个小时才能刷新。这就是为什么最新文章不会立即显示的原因。

Here was someone having similar issues提要未更新。维护 Feed API 可能不再是 Google 的首要任务。 Yahoo PipesSuperfeedr可能是不错的选择。

关于javascript - Google Feed API 跳过文章?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26885237/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com