Perl
Perl
POST JSON to REST API with non-us-ascii Chars Escaped
See more REST Examples
Demonstrates how to POST to a REST API with non-usascii chars within JSON Unicode escaped.Chilkat Perl Downloads
use chilkat();
$success = 0;
$success = 0;
$rest = chilkat::CkRest->new();
# Connect using TLS.
$bAutoReconnect = 1;
$success = $rest->Connect("chilkatsoft.com",443,1,$bAutoReconnect);
# Load JSON containing the following Korean text.
# {
# "BillAddr": {
# "Id": "239615",
# "Line1": "류리하",
# "Line2": "류리하류리하",
# "City": "류리하류리하",
# "Country": "US",
# "CountrySubDivisionCode": "AK",
# "PostalCode": "류리하"
# }
# }
$json = chilkat::CkJsonObject->new();
$json->put_EmitCompact(0);
$success = $json->LoadFile("qa_data/json/korean.json");
if ($success == 0) {
print $json->lastErrorText() . "\r\n";
exit;
}
$success = $rest->AddHeader("Content-Type","application/json; charset=UTF-8");
$sb = chilkat::CkStringBuilder->new();
$json->EmitSb($sb);
$sb->Encode("unicodeescape","utf-8");
print $sb->getAsString() . "\r\n";
# The StringBuilder contains this:
# {
# "BillAddr": {
# "Id": "239615",
# "Line1": "\ub958\ub9ac\ud558",
# "Line2": "\ub958\ub9ac\ud558\ub958\ub9ac\ud558",
# "City": "\ub958\ub9ac\ud558\ub958\ub9ac\ud558",
# "Country": "US",
# "CountrySubDivisionCode": "AK",
# "PostalCode": "\ub958\ub9ac\ud558"
# }
# }
$sbResp = chilkat::CkStringBuilder->new();
$success = $rest->FullRequestSb("POST","/echo_request_body.asp",$sb,$sbResp);
if ($success == 0) {
print $rest->lastErrorText() . "\r\n";
exit;
}
# Show the response.
print "Json Response: " . $sbResp->getAsString() . "\r\n";