Amazon S3 - 如何修复“我们计算的请求签名与签名不匹配”错误?

我已经在网上搜索了两天多,可能已经查看了大多数在线记录的场景和解决方法,但到目前为止,没有任何效果。

我使用的是运行 PHP 5.3 的适用于 PHP V2.8.7 的 AWS 开发工具包。

我正在尝试使用以下代码连接到我的 Amazon S3 存储桶:

// Create a `Aws` object using a configuration file
$aws = Aws::factory('config.php');

// Get the client from the service locator by namespace
$s3Client = $aws->get('s3');

$bucket = "xxx";
$keyname = "xxx";

try {
    $result = $s3Client->putObject(array(
        'Bucket' => $bucket,
        'Key' => $keyname,
        'Body' => 'Hello World!'
    ));

    $file_error = false;
} catch (Exception $e) {
    $file_error = true;

    echo $e->getMessage();

    die();
}

我的配置.php文件如下:

return [
    // Bootstrap the configuration file with AWS specific features
    'includes' => ['_aws'],
    'services' => [
        // All AWS clients extend from 'default_settings'. Here we are
        // overriding 'default_settings' with our default credentials and
        // providing a default region setting.
        'default_settings' => [
            'params' => [
                'credentials' => [
                    'key'    => 'key',
                    'secret' => 'secret'
                ]
            ]
        ]
    ]
];

它正在产生以下错误:

我们计算的请求签名与您提供的签名不匹配。检查您的密钥和签名方法。

我已经检查了我的访问密钥和秘密至少20次,生成了新的,使用了不同的方法来传递信息(即配置文件和在代码中包含凭据),但目前没有任何工作。


答案 1

经过两天的调试,我终于发现了问题...

我分配给对象的键以句点开始,即 ,这导致错误发生。..\images\ABC.jpg

我希望API提供更有意义和相关的错误消息,唉,我希望这将有助于其他人!


答案 2

我收到此错误,凭据错误。我认为当我最初粘贴它时,有看不见的字符。


推荐