将图像添加到 RSS 提要的正确方法?

Posted

技术标签:

【中文标题】将图像添加到 RSS 提要的正确方法?【英文标题】:Correct Method For Adding Images To An RSS Feed? 【发布时间】:2012-01-08 16:41:09 【问题描述】:

每个项目都有一个,而不是整个提要的徽标。

我正在使用 php 使用来自 db 的值生成我的提要。 Firefox 上没有显示任何内容,但如果我在 chrome 中打开 url,我可以看到那里的所有 xml 输出,对我来说看起来不错。

我不确定的一件事是包括图片,我使用了这个网站并实现了它所说的:

http://twigstechtips.blogspot.com/2010/10/add-image-to-your-rss-feed-item.html

我也看到了这个 SO 问题:RSS feed: to feed images to your rss。这可能是最好的方法,我假设有一个 php 函数来确定图像的文件大小?

我看到的最常见的方式也是SO上的一个问题:Images in RSS feed

我尝试验证提要以测试为什么它没有显示在 Firefox 上,但因为它太大了,到目前为止我访问过的任何网站都无法验证它。是否有可能这就是它没有在 Firefox 上显示的原因(在我截断 CDATA 部分和尝试添加图像之前,它确实曾经在某个时候出现过)。

唯一的问题是我不确定它在我的提要中的位置。请参阅下面的源代码和示例输出:

来源(减去不必要的东西,如包含等)

header("Content-Type: application/rss+xml; charset=utf-8");

$rssfeed = '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
$rssfeed .= '<rss version="2.0">' . "\n";
$rssfeed .= '<channel>' . "\n";
$rssfeed .= '<title>RSS feed</title>' . "\n";
$rssfeed .= '<link>http://www.website.co.uk</link>' . "\n";
$rssfeed .= '<description>RSS feed from www.website.co.uk</description>' . "\n";
$rssfeed .= '<language>en-uk</language>' . "\n";
$rssfeed .= '<copyright>Copyright (C) 2011 website.co.uk</copyright>' . "\n\n";

$query = 'SELECT * 
          FROM uk_newsreach_article t1
              INNER JOIN uk_newsreach_article_photo t2
                  ON t1.id = t2.newsArticleID
              INNER JOIN uk_newsreach_photo t3
                  ON t2.newsPhotoID = t3.id
          ORDER BY t1.publishDate DESC;';

$result = mysql_query($query) or die ("Could not execute query");


while($row = mysql_fetch_array($result)) 
    extract($row);

    $rssfeed .= '<item>' . "\n\t";
    $rssfeed .= '<title>' . $row['headline'] . '</title>' . "\n\t";

    $link= 'http://www.website.co.uk';
    $url = ' . $link . '/' . $row['newsArticleID'];

    $rssfeed .= '<link>' . $url . '</link>' . "\n\t";
    $rssfeed .= '<guid>' . $url . '</guid>' . "\n\t";

    $text = $row['text'];
    $rssfeed .= '<description><![CDATA[' . $text . ']]></description>' . "\n\t";
    // $rssfeed .= '<description>' . htmlentities($text) . '</description>' . "\n\t";

    // add image
    $rssfeed .= '<media:thumbnail url="' . $row['mediumURL'] . '"   />'. "\n\t";

    $rssfeed .= '<pubDate>' . date("D, d M Y H:i:s O", strtotime($row['publishDate'])) . '</pubDate>' . "\n";
    $rssfeed .= '</item>' . "\n\n";


$rssfeed .= '</channel>' . "\n";
$rssfeed .= '</rss>' . "\n";

echo $rssfeed;

示例输出

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>RSS feed</title>
<link>http://www.website.co.uk</link>
<description>RSS feed from www.website.co.uk</description>
<language>en-uk</language>
<copyright>Copyright (C) 2011 website.co.uk</copyright>

<item>
<title>Some Title</title>
<link>http://www.website.co.uk/news/articles/slug</link>
<guid>http://www.website.co.uk/news/articles/slug</guid>
<description><![CDATA[<p>Text</p>
<p>More text</p>
<p>Posted by Firstname Lastname</p>]]></description>
<media:thumbnail url="http://www.website.co.uk/img/image.jpg"   />
<pubDate>Mon, 03 Oct 2011 16:57:09 +0000</pubDate>
</item>
....
....
</channel>
</rss>

【问题讨论】:

【参考方案1】:

通过在CDATA 部分中插入如下内容来管理包含图像:

$text = $row['text'];
$image = '<p><img class="center" src="' . $row['mediumURL'] . '"  /></p>';
$description = $image . $text;

$rssfeed .= '<description><![CDATA[' . $description . ']]></description>' . "\n\t";

http://www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php#comment-185597

【讨论】:

【参考方案2】:

http://video.search.yahoo.com/mrss

【讨论】:

是的,我刚刚意识到我完全错过了那篇博客文章中的&lt;rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" version="2.0"&gt; 行。虽然仍然没有显示在 FF 中:( 不验证它 - Unable to validate, due to hardcoded resource limits (feed length &gt; 2000000 bytes),可能不得不限制 db 结果并以这种方式尝试 hmm ,只是减小了提要的大小,它工作正常,但没有图像进行更改

以上是关于将图像添加到 RSS 提要的正确方法?的主要内容,如果未能解决你的问题,请参考以下文章

将 WordPress 特色图片添加到 RSS 提要

在K2.2中将图像添加到RSS提要

如何将图像添加到 RSS 2.0 中的项目?

如何将 CORS 支持添加到 Wordpress RSS2 提要?

如何将图像添加为RSS源的一部分

如何在 UITableViewCell 上添加 rss 图片