The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

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

VERSION

Version '0.11'

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->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";
    }

SUBROUTINES/METHODS

new

returns a new Request object

method

returns the request method

url

returns the absolute url of the request (excluding fragments)

http_version

returns the version of the http request

headers

returns a list of http header objects

cookies

returns a list of http cookie objects

query_string

returns a list of the individual objects in the query string

post_data

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

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

body_size

returns the total number of bytes in the http request body

comment

returns the comment about the Entry