NAME
Archive::Har::Entry::Cookie - Represents a single http cookie object for a request or response inside the HTTP Archive
VERSION
Version '0.21'
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();
foreach my $cookie ($request->cookies()) {
$cookie->comment("Something interesting here");
print "Name: " . $cookie->name() . "\n";
print "Value: " . $cookie->value() . "\n";
print "Path: " . $cookie->path() . "\n";
print "Domain: " . $cookie->domain() . "\n";
print "Expires: " . $cookie->expires() . "\n";
print "httpOnly: " . $cookie->http_only() . "\n";
print "secure: " . $cookie->secure() . "\n";
print "Comment: " . $cookie->comment() . "\n";
}
}
DESCRIPTION
This Module is intended to provide an interface to create/read/update Cookie objects in HTTP Archive (HAR) files.
SUBROUTINES/METHODS
name
returns the name of the cookie
value
returns the value of the cookie
path
returns the path of the cookie
domain
returns the domain of the cookie
expires
returns the expiry date (if any) of the cookie
http_only
returns a true/false value if the cookie is marked as httpOnly
secure
returns a true/false value if the cookie is marked as secure, to only be transmitted over https
comment
returns the comment about the cookie
DIAGNOSTICS
%s is not specified in the HAR 1.2 spec and does not start with an underscore
-
The HAR 1.2 specification allows undocumented fields, but they must start with an underscore
CONFIGURATION AND ENVIRONMENT
Archive::Har::Entry::Cookie requires no configuration files or environment variables.
DEPENDENCIES
Archive::Har::Entry::Cookie requires no additional non-core Perl modules
INCOMPATIBILITIES
None reported
AUTHOR
David Dick, <ddick at cpan.org>
BUGS AND LIMITATIONS
Please report any bugs or feature requests to bug-archive-har at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Archive-Har. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
LICENSE AND COPYRIGHT
Copyright 2015 David Dick.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.