34

从这段代码中,我收到以下错误

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

到目前为止,我已经:

  • 检查 Authentication Key 和 Secret Key 是否正确,它们是正确的。
  • 更新卷曲
  • 当我输入错误的身份验证权限时,错误没有改变。
4

5 回答 5

91

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

如果您正在运行 ubuntu,请尝试更新系统时间:

sudo ntpdate ntp.ubuntu.com
于 2013-08-18T15:25:49.997 回答
2

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

sudo service ntpdate stop
sudo service ntpdate start
于 2015-07-30T15:48:11.327 回答
1

如果您docker-machine在 Mac 上使用,则可以使用以下命令解决:

docker-machine ssh default 'sudo ntpclient -s -h pool.ntp.org'

于 2017-04-26T18:40:31.870 回答
1

vagrant 项目的快速说明:这通常由vagrant reload.

于 2017-07-23T17:42:27.673 回答
0

不完全是 OP 问题,但这是谷歌对“InvalidSignatureException DynamoDB”的最高回应,它有很多潜在的原因。

对我来说,这是因为我的身体包含 100% 可重复的表情符号。通过使用encodeURIComponent.

于 2022-02-15T13:51:15.930 回答