HTTP::OAI::ListIdentifiers
Provide access to an OAI ListIdentifiers response
- Provided by: libhttp-oai-perl (Version: 4.13-1)
- Report a bug
Provide access to an OAI ListIdentifiers response
my $r = $h->ListIdentifiers;
while(my $rec = $r->next) {
print "identifier => ", $rec->identifier, "\n",
print "datestamp => ", $rec->datestamp, "\n" if $rec->datestamp;
print "status => ", ($rec->status || 'undef'), "\n";
}
die $r->message if $r->is_error;
If -resume was set to false in the Harvest Agent, next may return a string (the resumptionToken).