-1
私はamazon ec2で作業しています。私はここで、次のエラーにAmazon EC2はPHPでインスタンス化していません
Fatal error: Uncaught exception 'Aws\Exception\CredentialsException' with message 'Error retrieving credentials from the instance profile metadata server. (cURL error 28: Connection timed out after 1996 milliseconds
を与えるコードを統合した場合、私のコードは
require __DIR__ . '/aws.phar';
$client = Aws\S3\S3Client::factory([
'key' => '[********]',
'secret' => '[************]',
'region' => '[us-east-1]', // (e.g., us-east-1)
'version' => 'latest'
]);
echo $client->listBuckets();
私はそれはあなたの本当の鍵と秘密ではありません願っています。 – apokryfos
私の答えはあなたの問題を解決しましたか? – helloV