Help for this page
my @ns_headers = ( 'ACCEPT' => '..', 'ACCEPT_ENCODING' => '...', ... 'UPGRADE_INSECURE_REQUESTS' => '1', 'USER-AGENT' => '...', ) ;
my $getReq = HTTP::Request->new( GET => $link, HTTP::Headers->new( @ns +_headers ) ) ; my $response = $ua->request( $getReq ) ;