Last active
December 20, 2015 03:09
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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