web-dev-qa-db-ja.com

ATOMやRSS?などのフィードのページ付け

これも可能ですか?

たぶん?

<link rel=“next” type=“application/atom+xml” href=”[//path/page2]”></link> 
28
Drew

ATOM 次の構文を許可 ( 'ATOM feed next/previous'の最初のGoogle結果):

<link rel="self" type="application/atom+xml" href="http://www.syfyportal.com/atomFeed.php?page=3"/>
<link rel="first" href="http://www.syfyportal.com/atomFeed.php"/>
<link rel="next" href="http://www.syfyportal.com/atomFeed.php?page=4"/>
<link rel="previous" href="http://www.syfyportal.com/atomFeed.php?page=2"/>
<link rel="last" href="http://www.syfyportal.com/atomFeed.php?page=147"/>

RSSには何も見つかりませんが、「本当にシンプルなシンジケーション」と呼ばれているので、そのような機能はその範囲外だと思います。

22
ceejayoz

これは、RFC 5005、フィードのページングとアーカイブ、 セクション で定義されています。

最初、前、次、最後をリンク関係として使用できます。

<link rel="next" href="http://example.org/index.atom?page=2"/>

追加の「type」属性は必要ありません。

15
user183924