1

我正在寻找一种方法来设置我自己的 RSS 提要。我希望能够在我的网站上发布一些内容(锁定给我,或者通过记事本),但我也希望它能够将此提要发布到 facebook 和 twitter 上。

有没有一种新手方法来设置它,或者通过购买一些软件可以更好地解决这个问题?

我在设置我将通过笔记本更新的 rss 提要的错误尝试如下(尽管我暂时没有按预期工作):

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">


<channel>
    <title>First post title</title>
        <link>http://www.mysite.com</link>
    <description>I'm posting a lot of words to fill in this space for my first potential rss feed, let's hope it works!</description>
        <atom:link href="http://www.mysite.com" rel="self" type="application/rss+xml" />

<item>
    <title>Or maybe this is the first title</title>
    <link>http://www.mysite.com/page.html</link>
    <pubDate>Mon, 03 Dec 2012 16:50:32</pubDate>
    <guid isPermaLink="true">http://www.mysite.com/page.html</guid>
    <description>This is potentially the first post or perhaps the second post of the new feed being create.<description>
</item>


</channel>
</rss>
4

1 回答 1

2

您的 Feed 存在几个问题,即日期无效和商品描述缺少结束标记。尝试以下操作:

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>

    <title>First post title</title>
    <link>http://www.mysite.com</link>
    <description>I'm posting a lot of words to fill in this space for my first potential rss feed, let's hope it works!</description>
    <atom:link href="http://www.mysite.com" rel="self" type="application/rss+xml" />

    <item>
      <title>Or maybe this is the first title</title>
      <link>http://www.mysite.com/page.html</link>
      <pubDate>Mon, 03 Dec 2012 16:50:32 GMT</pubDate>
      <guid isPermaLink="true">http://www.mysite.com/page.html</guid>
      <description>This is potentially the first post or perhaps the second post of the new feed being create.</description>
    </item>

  </channel>
</rss>

如果您手动创建提要,则可以使用W3C 提要验证器验证您的标记。

有很多方法可以自动执行此操作,但在不知道您当前如何生成网站内容的情况下无法提供推荐。

于 2013-01-04T04:16:02.450 回答