Archive-Har
view release on metacpan or search on metacpan
lib/Archive/Har/Entry/Request.pm view on Meta::CPAN
}
}
return $json;
}
1;
__END__
=head1 NAME
Archive::Har::Entry::Request - Represents a single http request inside the HTTP Archive
=head1 VERSION
Version '0.21'
=for stopwords HAR url http undef postData CRLF
=head1 SYNOPSIS
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 $request = $entry->request();
$request->comment("Something interesting here");
print "Method: " . $request->method() . "\n";
print "Url: " . $request->url() . "\n";
print "HttpVersion: " . $request->http_version() . "\n";
foreach my $header ($request->headers()) {
}
foreach my $cookie ($request->cookies()) {
}
foreach my $item ($request->query_string()) {
}
my $post_data = $request->post_data();
print "Header Size: " . $request->headers_size() . "\n";
print "Body Size: " . $request->body_size() . "\n";
print "Comment: " . $request->comment() . "\n";
}
=head1 DESCRIPTION
This Module is intended to provide an interface to create/read/update
Request objects in HTTP Archive (HAR) files.
=head1 SUBROUTINES/METHODS
=head2 new
returns a new Request object
=head2 method
returns the request method
=head2 url
returns the absolute url of the request (excluding fragments)
=head2 http_version
returns the version of the http request
=head2 headers
returns a list of L<http header|Archive::Har::Entry::Header> objects
=head2 cookies
returns a list of L<http cookie|Archive::Har::Entry::Cookie> objects
=head2 query_string
returns a list of the individual L<objects|Archive::Har::Entry::Request::QueryString> in the query string
=head2 post_data
returns the L<post data|Archive::Har::Entry::Request::PostData> object. This may return undef if the postData is not defined.
=head2 headers_size
returns the total number of bytes in the http request up to and including the double CRLF before the start of the request body
=head2 body_size
returns the total number of bytes in the http request body
=head2 comment
returns the comment about the Request
=head1 DIAGNOSTICS
=over
=item C<< %s is not specified in the HAR 1.2 spec and does not start with an underscore >>
The HAR 1.2 specification allows undocumented fields, but they must start with an underscore
=back
=head1 CONFIGURATION AND ENVIRONMENT
Archive::Har::Entry::Request requires no configuration files or environment variables.
=head1 DEPENDENCIES
Archive::Har::Entry::Request requires no additional non-core Perl modules
=head1 INCOMPATIBILITIES
None reported
=head1 AUTHOR
David Dick, C<< <ddick at cpan.org> >>
=head1 BUGS AND LIMITATIONS
( run in 2.338 seconds using v1.01-cache-2.11-cpan-b16cb0d3907 )