NAME
Archive::Har::Entry::Request::PostData::Params - Represents a single name/value pair from the query string for a request inside the HTTP Archive
VERSION
Version 0.03
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();
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";
}
}
}
SUBROUTINES/METHODS
name
returns the name of the parameter in the posted data
value
returns the value of the parameter in the posted data or content of the posted file
fileName
returns the name of the posted file
comment
returns the comment about the parameters