
Archive::Har::Entry::Request::PostData::Params - 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();
my $postData = $request->postData();
if (defined $postData) {
foreach my $param ($postData->params()) {
print "Name: " . $element->name() . "\n";
print "Value: " . $element->value() . "\n";
print "File Name: " . $element->fileName() . "\n";
print "Content Type: " . $element->contentType() . "\n";
print "Comment: " . $element->comment() . "\n";
}
}
}

returns the name of the parameter in the posted data
returns the value of the parameter in the posted data or content of the posted file
returns the name of the posted file
returns the comment about the parameters