Help for this page

Select Code to Download


  1. or download this
    my $agent = LWP::UserAgent->new( timeout => 30 );
    
    # ...
    
    my $response = HTTP::Request->new( GET => $site );
    
  2. or download this
    my $get = HTTP::Request->new( GET => $site );
    
    # ...
    
    my $response = $agent->request( $get );