Amazon DynamoDB InvalidSignatureException

从这个代码中,我得到下面的错误

require "vendor/autoload.php";
use Aws\Common\Aws;
use Aws\DynamoDb\DynamoDbClient;
use Aws\DynamoDb\Enum\ComparisonOperator;
use Aws\DynamoDb\Enum\KeyType;
use Aws\DynamoDb\Enum\Type;

$aws = Aws::factory(array(
'key'    => '[clipped]',
'secret' => '[clipped]',
'region' => Region::US_WEST_1
));

$client = $aws->get("dynamodb");
$tableName = "ExampleTable";

$result = $client->createTable(array(
    "TableName" => $tableName,
    "AttributeDefinitions" => array(
        array(
           "AttributeName" => "Id",
           "AttributeType" => Type::NUMBER
        )
     ),
     "KeySchema" => array(
        array(
           "AttributeName" => "Id",
           "KeyType" => KeyType::HASH
        )
    ),
    "ProvisionedThroughput" => array(
        "ReadCapacityUnits"    => 5,
        "WriteCapacityUnits" => 6
    )
));

print_r($result->getPath('TableDescription'));

我在尝试将表添加到 AWS 的 DynamoDB 时收到以下错误。

PHP Fatal error:  Uncaught Aws\\DynamoDb\\Exception\\DynamoDbException: AWS Error Code:
InvalidSignatureException, 
Status Code: 400, 
AWS Request ID: [clipped], 
AWS Error Type: client, 
AWS Error Message: Signature expired: 20130818T021159Z is now earlier than  
20130818T021432Z (20130818T022932Z - 15 min.), 
User-Agent: aws-sdk-php2/2.4.3 Guzzle/3.7.2 curl/7.21.6 PHP/5.3.6-13ubuntu3.9\n  thrown in
/var/www/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php on
line 91

到目前为止,我已经:

  • 已检查身份验证密钥和私钥是否正确,它们是。
  • 更新的 cURL
  • 当我输入错误的身份验证权限时,错误没有改变。

答案 1

您的本地系统时间似乎不正确。我在使用 AWS S3 时遇到了类似的问题,我的系统时钟偏斜了 30 分钟。

如果你运行的是 ubuntu,请尝试更新你的系统时间:

sudo ntpdate ntp.ubuntu.com

答案 2

如果已安装 ntpdate,也可以重新启动日期服务来解决问题。

sudo service ntpdate stop
sudo service ntpdate start

推荐