Perl
Perl
Inspect HTTP Request Header
Demonstrates theLastHeader property.
Chilkat Perl Downloads
use chilkat();
$success = 0;
$http = chilkat::CkHttp->new();
$url = "https://chilkatsoft.com/echo_request_body.asp";
$json = "{\"greeting\":\"Hello World\"}";
# Send a POST with the JSON in the HTTP request body.
$resp = chilkat::CkHttpResponse->new();
$success = $http->HttpStr("POST",$url,$json,"utf-8","application/json",$resp);
if ($success == 0) {
print $http->lastErrorText() . "\r\n";
exit;
}
# Examine the HTTP request header we just sent.
print $http->lastHeader() . "\r\n";
# Output:
# POST /echo_request_body.asp HTTP/1.1
# Host: chilkatsoft.com
# Accept: */*
# Accept-Encoding: gzip
# Content-Type: application/json
# Content-Length: 26