Skip to content

Instantly share code, notes, and snippets.

@cvergne
Last active December 20, 2015 03:09
Show Gist options
  • Save cvergne/6061899 to your computer and use it in GitHub Desktop.
Save cvergne/6061899 to your computer and use it in GitHub Desktop.
Format qu'un flux RSS doit avoir pour être pris en charge par le module RSS de Freebox OS.
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Downloads</title>
<link>http://www.example.com</link>
<description>List of auto-downloads</description>
<!-- <ttl>60</ttl> --> <!-- Durée (en minute) de mise en cache. Facultatif, mais empêche le raffrachissement manuel via l'API -->
<item>
<title>
Nom du téléchargement
</title>
<guid isPermaLink="true">
http://www.example.com/lien_du_fichier_a_telecharger
</guid>
<pubDate>Mon, 22 Jul 2013 00:12:38 +0200</pubDate>
<link>
http://www.example.com/lien_du_fichier_a_telecharger
</link>
<description><![CDATA[Informations sur le fichier]]></description>
<enclosure url="http://www.example.com/lien_du_fichier_a_telecharger" length="5052635579" type="video/x-matroska"/>
</item>
</channel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment