我正在寫一個RSS源(爲了好玩),並且正在查看規範here。我可以在JSON中使用RSS嗎?
RSS是XML的一種方言。所有RSS文件必須符合萬維網聯盟(W3C)網站上發佈的XML 1.0規範。
很明顯,這意味着如果我選擇JSON選項,我不提供「純」RSS。也就是說,如果我符合規範的其餘部分,是否有可能(定製的)讀者能夠解析它?換句話說,如果我符合規範,但使用JSON而不是XML,它是一個可用的RSS提要?
編輯 我不確定我是否讓自己清楚。 不涉及XML。我想用類似於RSS的東西(這是XML)來寫東西。很顯然,這樣一個feed的讀者需要寫出來理解JSON格式。 我想知道這是否已經完成。有沒有服務以這種方式提供Feed?有沒有可以聚合/理解這種格式的程序。在這種情況下,RSS規範(不含XML部分)是否符合規範?
RG
{
"title":"example.com",
"link":"http://www.example.com/",
"description":"Awesome news about junk",
"items":[
{
"title":"An article",
"link":"http://www.example.com/an-article",
"descrition":"Some sample text here",
"pubDate":"2008-10-27 11:06 EST",
"author":"example author",
},
{
"title":"Second",
"link":"http://www.example.com/Seond",
"descrition":"Some sample text here",
"pubDate":"2008-10-25 23:20 EST",
"author":"author mcauthor",
},
{
"title":"third article",
"link":"http://www.example.com/third-article",
"descrition":"Some sample text here",
"pubDate":"2008-10-25 23:18 EST",
"author":"some other author",
}
]
}
唉,不,JSON有點太晚了。無論如何,+1只是爲了開箱即用。 – 2009-11-07 13:04:31