私はs3バケットの基本操作のperofrmingのawsへの接続を確立しようとしています。AWS S3 grailsを使用して
request- Received error response: com.amazonaws.services.s3.model.AmazonS3Exception: The request signature we calculated does not match the signature you provided. Check your key and signing method.
私も二重の私が使用していたアクセス鍵と秘密鍵を確認しています
def list(){
AWSCredentials credentials = new BasicAWSCredentials("Access key", "Secret Key");
AmazonS3 s3client = new AmazonS3Client(credentials);
String bucketName = "sample-bucket-from-java-code";
System.out.println("Listing all buckets : ");
for (Bucket bucket : s3client.listBuckets()) {
System.out.println(" - " + bucket.getName());
}
}
これは私にエラーを与える:以下のコードです。問題を理解できません。
私はあなたにチェックをしましたか?http://stackoverflow.com/questions/2777078/amazon-mws-request-signature-calculated-does-not-match-the-signature-provided –