I find that the return from LWP::UserAgent->request() contains both the header and body of a HTTP response. I just need the body of the response to do some parsing, so how can I do?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted
require LWP::UserAgent;

my $ua = LWP::UserAgent->new;

my $response = $ua->get('http://search.cpan.org/');

if ($response->is_success) {

    print $response->decoded_content;  # or whatever
}
else {
    die $response->status_line;
}

response->decoded_content will return the body of the response.

link|improve this answer
feedback

The request method (according to the manual) returns an HTTP::Response object, which has a content method. Just call that.

$ua->request->content;
link|improve this answer
5  
You might actually want decoded_content, which deals with text encodings (in HTTP/MIME lingo, charsets) as well as HTTP Content-Encodings like gzip. – hobbs Dec 17 '09 at 11:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.