in reply to Checking contents of fetched URL.
# perldoc HTTP::Response NAME HTTP::Response - HTTP style response message SYNOPSIS Response objects are returned by the request() method of the "LWP::UserAgent": # ... $response = $ua->request($request) if ($response->is_success) { print $response->content; } else { print STDERR $response->status_line, "\n"; }
|
|---|