0

我需要将图像添加到我的 RSS 提要中,但看不到它。

我的代码是:

var item = new SyndicationItem
(
    title: Title,
    content: Content,
    itemAlternateLink: new Uri(bla)
);
                    
item.ElementExtensions.Add(
    new XElement("enclosure",
        new XAttribute("type", "image/jpeg"),
        new XAttribute("url", new Uri(Uri))
    ).CreateReader()
);                   

如果我使用ElementExtensions我在 RSS 中看到图像的链接,但我想直接查看图像而不单击链接。可能吗?

4

1 回答 1

1

您是否在问如何在您的 RSS 提要中显示图像?如果是这样,我相信要在提要中显示图像,您需要 RSS 媒体扩展 - http://video.search.yahoo.com/mrss

例如,Zenfolio 使用它来渲染画廊提要中的照片。

于 2011-11-29T23:13:39.560 回答