我正在寻找一种方法来设置我自己的 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>