in reply to Re: Perl to collect "Link" values contains "next"
in thread Perl to collect "Link" values contains "next"
Thanks team I was able to resolve my pagination issue below below object in the sub function in my code
$client->request(HTTP::Request->new('GET', "$_[0]"));and resolved the the Link next function
$linkheader = $response->header('Link'); if ($linkheader=~ m/next/) {......}
|
|---|