
Archive::Har::Entry::Response - Represents a single http response inside the HTTP Archive

Version 0.05

use Archive::Har();
my $http_archive_string = '"log": { "version": "1.1", .... ';
my $har = Archive::Har->new();
$har->string($http_archive_string);
foreach my $entry ($har->entries()) {
my $response = $entry->response();
print "Status: " . $response->status() . "\n";
print "StatusText: " . $response->statusText() . "\n";
print "HttpVersion: " . $response->httpVersion() . "\n";
foreach my $header ($response->headers()) {
}
foreach my $cookie ($response->cookies()) {
}
my $content = $response->content();
print "RedirectURL: " . $response->redirectURL() . "\n";
print "Header Size: " . $response->headersSize() . "\n";
print "Body Size: " . $response->bodySize() . "\n";
print "Comment: " . $response->comment() . "\n";
}

returns the numeric status of the response
returns the status text of the response
returns the version of the http response
returns a list of http header objects
returns a list of http cookie objects
returns details about the response body
returns the content of the Location header of the response, if any
returns the total number of bytes in the http response up to and including the double CRLF before the start of the response body
returns the total number of bytes in the http response body
returns the comment about the Entry