perl、XML::DOM、および XML::Parser を使用して、RSS フィードから情報を取得しようとしています。XML::DOM と XML::Parser に関するドキュメントを入手するのに苦労しています :(
これは RSS フィードの支出です。
<rss version="2.0">
<channel>
<item>
<title>The title numer 1</title>
<link>
http://www.example.com/link1.php?getfile=1&sha=1234567890
</link>
<description>
File 1
</description>
</item>
<item>
<title>The title numer 2</title>
<link>
http://www.example.com/link1.php?getfile=2&sha=0192837465
</link>
<description>
File 2
</description>
</item>
<item>
<title>The title numer 3</title>
<link>
http://www.example.com/link1.php?getfile=1&sha=0987654321
</link>
<description>
File 3
</description>
</item>
</channel>
そこで、この RSS フィードから「タイトル」と「リンク」を取得しようとしています。
XML::LibXML または XML::simple または XML::RSS を使用できません