Using HTTP::Request to post request and save response to a file : HTTP « Network « Perl






Using HTTP::Request to post request and save response to a file

    

use LWP::UserAgent;

$user_agent = new LWP::UserAgent;

$request = new HTTP::Request('GET', 'http://www.cpan.org/doc/FAQs/index.html');

$response = $user_agent->request($request);

open FILEHANDLE, ">file.txt";

print FILEHANDLE $response->{_content};

close FILEHANDLE;

   
    
    
    
  








Related examples in the same category

1.Get a web page
2.Retrieving a Web Page with get()
3.Using getstore() to Print an Invalid Page
4.Using is_success() with getstore()
5.Setting a User Agent and Retrieving a Web Page
6.Get a web page and save it to a local file