Magpie RSS 不显示内容

发布于 2024-10-18 06:08:43 字数 1118 浏览 2 评论 0原文

我有一个博客的 RSS 提要,我正在尝试使用 Magpie RSS 解析器将其显示在另一个网站上。它可以正确获取“链接”和“标题”标签,但不会获取博客帖子的内容。过去,我已经让它工作了,但内容被包含在标签中。在这种情况下,内容显示如下:

XML:

<content type="html">Test post&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/886334333339671757-1360251841923051040?l=grippofunkband.blogspot.com' alt='' /&gt;&lt;/div&gt;</content>

PHP

require_once 'rss/rss_fetch.inc';

$url = 'http://feeds.feedburner.com/grippofunkband?format=xml';
//http://grippofunkband.blogspot.com/feeds/posts/default';
$rss = fetch_rss($url);

$i = 0;
$max = 4;
foreach ($rss->items as $item ) {
    $title = $item['title'];
    $content = $item['content'];        
    $url = $item['link'];
    $pubDate = $item['updated'];
    echo "<li>$title<br />$url<br />$content</li>";//<a href='$url'></a>
    if (++$i == $max) break;                        
}

谁能想到为什么它不抓取内容标签中的内容,或者是否有一种方法可以工作围绕这个问题?任何帮助将不胜感激!

I have a blog's RSS feed that I am trying to display on another website using Magpie RSS parser. It is correctly fetching the 'link' and 'title' tags, but will not fetch the content of the blog's post. In the past, I have gotten it to work, but the content was enclosed in a tag. In this case, the content appears as such:

XML:

<content type="html">Test post<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/886334333339671757-1360251841923051040?l=grippofunkband.blogspot.com' alt='' /></div></content>

PHP

require_once 'rss/rss_fetch.inc';

$url = 'http://feeds.feedburner.com/grippofunkband?format=xml';
//http://grippofunkband.blogspot.com/feeds/posts/default';
$rss = fetch_rss($url);

$i = 0;
$max = 4;
foreach ($rss->items as $item ) {
    $title = $item['title'];
    $content = $item['content'];        
    $url = $item['link'];
    $pubDate = $item['updated'];
    echo "<li>$title<br />$url<br />$content</li>";//<a href='$url'></a>
    if (++$i == $max) break;                        
}

Can anyone think of why it's not grabbing what's in the contents tag, or if there is a way I can work around this issue? Any help would be much appreciated!

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

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

发布评论

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

评论(1

眼泪淡了忧伤 2024-10-25 06:08:43

这不是 RSS 提要。这是一个 Atom 提要,我认为这可能是您的基本问题。根据记忆,尝试抓取 atom_content 而不是 content,但这可能取决于您使用的 Magpie 的确切版本。

That's not an RSS feed. It's an Atom feed, which I think is probably your basic problem. From memory, try grabbing atom_content instead of content, but it may depend on the exact version of Magpie you're using.

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