I need a subroutine which should parse "any" RSS feed passed to it. I was using XML::RSS:Parser a few times already for some RSS feed but it does not work with Facebook.
Example code:
use LWP::Simple;
use XML::RSS::Parser;
my $url = join '', @ARGV;
die "No URL passed" if !$url;
# facebook does not accept default LWP user agent
my $ua = LWP::UserAgent->new(agent => 'iGoogleBot');
my $res = $ua->get($url);
my $content = $res->decoded_content;
my $parser = XML::RSS::Parser->new;
my $feed = $parser->parse_string($content) or die $parser->errstr;
print "COUNT: ".$feed->item_count."\n";
Result with Wired Facebook Feed
xf@serv:/tmp$ ./rss.pl 'https://www.facebook.com/feeds/page.php?id=19440638720&format=atom10'
Can't call method "contents" on an undefined value at /usr/local/share/perl/5.10.1/XML/RSS/Parser.pm line 122.
I think that XML::RSS::Parsers does not get correct namespace from the root element and nothing works after that. Ideas how to solve this?
I could use XML::Simple or something similar to parse Facebook's RSS but I want one parser for all rss feeds.
I am going to hack around XML/RSS/Parser.pm to find the reason but it's not the solution to change package only for facebook. And this facebook feed works well in i.e. android rss reader.