Help for this page

Select Code to Download


  1. or download this
        my $agentname = 
            'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)';
    ...
        $request->header('Referer' => $referer);
    
        my $response = $ua->request($request);
    
  2. or download this
        if ($res->is_redirect()) {
            my $loc = $res->header('Location');
            # create new request like above
            # and reaccess site
        }