w3schools validator validate probar online direct check atom-feed rss2

atom-feed - validate - w3 xml validator



¿Paginación en feeds como ATOM y RSS? (2)

Esto se define en RFC 5005, Feed Paging and Archiving, sección 3 .

Puede usar primero, anterior, siguiente y último como una relación de enlace:

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

Un atributo "tipo" adicional no es necesario.

¿Es esto posible?

¿Quizás?

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


Parece que ATOM permite la siguiente sintaxis (primer resultado de Google para '' ATOM feed next/previous ''):

<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"/>

No puedo encontrar nada en RSS, pero como se llama "sindicación realmente simple ", imagino que dicha funcionalidad está fuera de su alcance.