Help for this page
$useragent = LWP::UserAgent->new; $request = HTTP::Request->new(GET, $url); $response = $useragent->request($request); $response_text = $response->as_string(); print $response_text;