AWS S3 Presigned POST to URL query string for curl
问题 trying to generate a pre-signed query string to POST to an S3 bucket using the AWS SDK for PHP. Getting the following error: The request signature we calculated does not match the signature you provided. Here's the php file to generate the URL, adapted from here. <?php require('./aws/aws-autoloader.php'); $client = new \Aws\S3\S3Client([ 'version' => 'latest', 'region' => 'us-east-1', 'credentials' => [ 'key' => '[KEY]', 'secret' => '[SECRET]', ], ]); $bucket = '[mybucket]'; // Set some