NAME
WebService::Google::Reader::Feed - Subclass of XML::Atom::Feed
SYNOPSIS
$feed = $reader->feed(
feed => 'http://example.com/atom.xml', continue => 1
);
Iterator:
while ( my $entry = $feed->entry ) {
...
}
Batch:
do {
my @entries = $feed->entries;
...
} while ( $feed->previous );
DESCRIPTION
This is a subclass of XML::Atom::Feed
, which "continues" a feed if requested. Google Reader includes a continuation token indicating more entries are available.
METHODS
- entry
-
Iterates through the feed entries, one at a time. Automatically requests previous entries if the
continue
option is specified. - previous
-
This is used internally by the
entry
iterator, but can used explicitly if using theentries
method. - continuation
-
Accessor to the
continuation
token. - new and init
-
Only mentioned to shut up Pod::Coverage