Search code examples
amazon-s3aws-php-sdk

how to connect to amazon aws s3 with aws-sdk-php?


I want to rename an image on S3 with aws-sdk-php. My code is as follows:

<?php
use Aws\S3\S3Client;
require 'aws-autoloader.php';

      $client = S3Client::factory(array(
        'credentials' => array(
        'key'    => 'mykey',
        'secret' => 'mysecret',
      ),
        'signature' => 'v4',
        'region' => 'eu-central-1',
        'version' => 'latest',
        'http'    => [
            'verify' => false
        ]
      ));

      $result = $client->copyObject(array(
            'ACL' => 'private',
            // Bucket is required
            'Bucket' => 'myfirstbucket',
            'Key' => "newfoldername/newimagename",
            'CopySource' =>  "myfirstbucket/foldername/imagename",
            'MetadataDirective' => 'REPLACE'
      ));
?>

The error i get is:

AWS HTTP error: Client error: 400 AuthorizationHeaderMalformed (client): The authorization header is malformed; the Credential is mal-formed; expecting \"\/YYYYMMDD\/REGION\/SERVICE\/aws4_request\"

can someone help me?


Solution

  • Try this ::

    $client = S3Client::factory(array(
                                    'key'    => $aws_key,
                                    'secret' => $aws_access,
                                    'region' => $aws_region
                        ));
    

    I used to make client using these params only.