Sample code for 30+ languages & platforms
Perl

Send a Bodyless REST Request into a StringBuilder

See more REST Examples

Demonstrates Rest.FullRequestNoBodySb, which sends a request with no body and stores the text response body in a StringBuilder.

Background. This variant of the no-body full request writes the response into a StringBuilder rather than returning it as a string, which is convenient when the response will be further processed in place.

Chilkat Perl Downloads

Perl
use chilkat();

$success = 0;

$rest = chilkat::CkRest->new();
$bTls = 1;
$bAutoReconnect = 1;
$success = $rest->Connect("example.com",443,$bTls,$bAutoReconnect);
if ($success == 0) {
    print $rest->lastErrorText() . "\r\n";
    exit;
}

#  FullRequestNoBodySb sends a request with no body and stores the text response body in a
#  StringBuilder.
$sbResponse = chilkat::CkStringBuilder->new();
$success = $rest->FullRequestNoBodySb("GET","/api/items/123",$sbResponse);
if ($success == 0) {
    print $rest->lastErrorText() . "\r\n";
    exit;
}

$responseText = $sbResponse->getAsString();
if ($sbResponse->get_LastMethodSuccess() == 0) {
    print $sbResponse->lastErrorText() . "\r\n";
    exit;
}

print $responseText . "\r\n";