我正在使用JQuery Google Feed 插件 (gFeed)来输出 RSS 提要。我之前已经成功地使用过这个替代方案,但不幸的是我偶然发现了一些问题。RSS 提要拒绝输出到指定的 div。我已确认 使用 Google 阅读器正确显示提要https://www.phpbb.com/community/feed.php?mode=news 。
我的网站是http://removed/index
并且我还咨询了 [Google Feed API 开发人员页面][3]。
这是我的代码:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<!-- include this plugin -->
<script type="text/javascript" src="jquery.gfeed.js"></script>
<script type="text/javascript">
// when the DOM is ready, convert the feed anchors into feed content
$(document).ready(function() {
// add a feed manually
$('#feeds').gFeed({
url: 'https://www.phpbb.com/community/feed.php?mode=news',
title: 'A List Apart Feed (Added by Brute Force)'
});
});
</script>
<div id="feeds">
</div>