Adds a set of tags to an existing S3 object. This example adds tags to the object named "starfish.jpg" located in the bucket "chilkat100".
curl -X PUT https://chilkat100.s3.amazonaws.com/starfish.jpg?tagging \
-d '<Tagging>
<TagSet>
<Tag>
<Key>animal</Key>
<Value>starfish</Value>
</Tag>
</TagSet>
</Tagging>'
<?php
// The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number.
// For example, if using Chilkat v9.5.0.48, then include as shown here:
include("chilkat_9_5_0.php");
$rest = new CkRest();
$authAws = new CkAuthAws();
$authAws->put_AccessKey('AWS_ACCESS_KEY');
$authAws->put_SecretKey('AWS_SECRET_KEY');
$authAws->put_Region('us-east-1');
$authAws->put_ServiceName('s3');
$rest->SetAuthAws($authAws);
// URL: https://chilkat100.s3.amazonaws.com/starfish.jpg?tagging
$bTls = true;
$port = 443;
$bAutoReconnect = true;
$success = $rest->Connect('chilkat100.s3.amazonaws.com',$port,$bTls,$bAutoReconnect);
if ($success != true) {
print 'ConnectFailReason: ' . $rest->get_ConnectFailReason() . "\n";
print $rest->lastErrorText() . "\n";
exit;
}
// See the Online Tool for Generating XML Creation Code
$xml = new CkXml();
$xml->put_Tag('Tagging');
$xml->UpdateChildContent('TagSet|Tag|Key','animal');
$xml->UpdateChildContent('TagSet|Tag|Value','starfish');
$sbRequestBody = new CkStringBuilder();
$xml->GetXmlSb($sbRequestBody);
$sbResponseBody = new CkStringBuilder();
$success = $rest->FullRequestSb('PUT','/starfish.jpg?tagging',$sbRequestBody,$sbResponseBody);
if ($success != true) {
print $rest->lastErrorText() . "\n";
exit;
}
$respStatusCode = $rest->get_ResponseStatusCode();
if ($respStatusCode >= 400) {
print 'Response Status Code = ' . $respStatusCode . "\n";
print 'Response Header:' . "\n";
print $rest->responseHeader() . "\n";
print 'Response Body:' . "\n";
print $sbResponseBody->getAsString() . "\n";
exit;
}
?>