The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Archive::Har::Entry::Request - Represents a single http request inside the HTTP Archive

VERSION

Version 0.04

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();
        print "Method: " . $request->method() . "\n";
        print "Url: " . $request->url() . "\n";
        print "HttpVersion: " . $request->httpVersion() . "\n";
        foreach my $header ($request->headers()) {
        }
        foreach my $cookie ($request->cookies()) {
        }
        foreach my $item ($request->queryString()) {
        }
        my $postData = $request->postData();
        print "Header Size: " . $request->headersSize() . "\n";
        print "Body Size: " . $request->bodySize() . "\n";
        print "Comment: " . $request->comment() . "\n";
    }

SUBROUTINES/METHODS

method

returns the request method

url

returns the absolute url of the request (excluding fragments)

httpVersion

returns the version of the http request

headers

returns a list of http header objects

cookies

returns a list of http cookie objects

queryString

returns a list of the individual objects in the query string

postData

returns the post data object. This may return undef if the postData is not defined.

headersSize

returns the total number of bytes in the http request up to and including the double CRLF before the start of the request body

bodySize

returns the total number of bytes in the http request body

comment

returns the comment about the Entry