Created
March 21, 2013 10:00
-
-
Save nkmrgk/5211932 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use WebService::Google::Reader; | |
my $feed_uri = 'http://search.cpan.org/uploads.rdf'; | |
my $reader = WebService::Google::Reader->new( | |
username => '', | |
password => '', | |
); | |
die $reader->error if (!$reader or $reader->error); | |
my $feed = $reader->feed($feed_uri, count => 40, order => 'asc'); | |
for my $entry ($feed->entries) { | |
warn $entry->as_xml; | |
} | |
__END__ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment