HTTP::OAI::ListIdentifiers(3pm) | User Contributed Perl Documentation | HTTP::OAI::ListIdentifiers(3pm) |
HTTP::OAI::ListIdentifiers - 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).
2022-09-17 | perl v5.34.0 |