Created
March 22, 2022 17:59
-
-
Save damiancastelao/99e0e486a17bf9770ae2def68bdff654 to your computer and use it in GitHub Desktop.
Ejemplo sencillo de feed formato rss
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="0.91"> | |
<channel> | |
<title>Canal RSS</title> | |
<link>http://miservidor.com</link> | |
<description>Guía para escribir documentos RSS</description> | |
<language>es-ES</language> | |
<image> | |
<title>Canal RSS</title> | |
<url>http://miservidor.com/milogo.gif</url> | |
<link>http://miservidor.com/</link> | |
<width>128</width> | |
<height>128</height> | |
</image> | |
<item> | |
<title>Noticia 1</title> | |
<link>http://miservidor.com/noticia1.htm</link> | |
<pubDate>Mon, 21 Mar 2022 00:00:00 GMT</pubDate> | |
<description> Descripción de la noticia 1 </description> | |
</item> | |
<item> | |
<title>Noticia 2</title> | |
<link>http:/miservidor.com/contenidos.asp? | |
nivel=18&cont=567</link> | |
<pubDate>Mon, 21 Mar 2022 01:00:00 GMT</pubDate> | |
<description>Descripcion noticia dos</description> | |
</item> | |
</channel> | |
</rss> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment