RSS FeedやSNS連携のもろもろ(RSSの記入方法)
今回は少し開発向けの記事RSSを作成するのにはルールがあります。
自分で作ったのを元にすると
Google Readerで確認しただけですがタイトル、文章、画像、リンクなど
HTML形式で表示したフォーマットは下のような感じ。
注意したのは
"" ←これとか
<![CDATA[ ]]>←これとか
あとタイトルの特殊文字は置き換えました。
Youtubeプレイヤーの埋め込みもembedタグで可能です。
itemタグはitem分繰り返して書いてくださいぴょん
日付のフォーマットは
2012-07-12
でも大丈夫です。
TimeZoneにも注意しようd(・_・)ヘ?
文言は違いますが(・_・;)こんな感じ
スペック!
<rss xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:admin="http://webns.net/mvcb/"xmlns:rdf="http://www.w3.org/1999/02/22-rdf-
syntax-ns#" version="2.0">
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:admin="http://webns.net/mvcb/"xmlns:rdf="http://www.w3.org/1999/02/22-rdf-
syntax-ns#" version="2.0">
<channel>
<title>Yuzo Kagawa on G+</title>
<link>
http://1comeda-viewer.appspot.com/google_plus_rss.jsp?userid=103274438679581487299
</link>
<description>unofficial akb on google+ feed</description>
<dc:language>ja</dc:language>
<dc:creator>Yuzo Kagawa</dc:creator>
<dc:date>2012-07-12T14:14:53.362Z</dc:date>
<item>
<title>タイトルだぴょーん</title>
<link>
https://plus.google.com/103274438679581487299/posts/daVuFtZyrJy
</link>
<description>
<![CDATA[
文章だぴょーん<br/>
<a href="http://www.youtube.com/watch?v=_fcAEkH09_M" target="_blank">
<img src="https://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?
container=focus&gadget=a&resize_h=100&url=http%3A%2F%2Fytimg.googleuserco
ntent.com%2Fvi%2F_fcAEkH09_M%2Fhqdefault.jpg" />
container=focus&gadget=a&resize_h=100&url=http%3A%2F%2Fytimg.googleuserco
ntent.com%2Fvi%2F_fcAEkH09_M%2Fhqdefault.jpg" />
</a>
]]>
</description>
<dc:date>2012-07-12T09:51:36.000Z</dc:date>
</item>
</channel>
</rss>