2 messages in com.googlegroups.bloggerdevRequesting the entire archive from
FromSent OnAttachments
djacobs13 Jul 2005 11:59 
Eric Case22 Jul 2005 15:08 
Subject:Requesting the entire archive from
From:djacobs (djac@gmail.com)
Date:07/13/2005 11:59:05 AM
List:com.googlegroups.bloggerdev

I'm using XML::Atom to reguest a Blogger Atom Feed (see below). This returns the last 15 posts. Is it possible to receive more the entire archive of a blog, in chunks or all at once, using Blogger's implementation of the Atom API?

Thanks, David

my $api = XML::Atom::Client->new({ username => USERNAME, password => PASSWORD, });

#my $feedURI = FEEDURI; my $feedURI = ENDPOINT.BLOGID; my $feed = $api->getFeed($feedURI);

# as_xml is an XML::Atom::Feed object print $feed->as_xml;