
Archive::Har::Entry::Request::QueryString - Represents a single name/value pair from the query string for a request 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 $request = $entry->request();
foreach my $element ($request->queryString()) {
print "Name: " . $element->name() . "\n";
print "Value: " . $element->value() . "\n";
print "Comment: " . $element->comment() . "\n";
}
}

returns the name of the element in the Query String
returns the value of the element in the Query String
returns the comment about element in the Query String