我们使用预先签名的s3网址来提供对存储在s3中的图像的Web访问。
我们用来生成预签名网址的java代码类似于下面的
String accessKey = ...;
String secretKey = ...;
String region = ...;
com.amazonaws.HttpMethod awsHttpMethod = ...;
String bucketName = ...;
String objectKey = ...;
Date expirationDate = ...;
BasicAWSCredentials creds = new BasicAWSCredentials(accessKey, secretKey);
AmazonS3 s3Client = AmazonS3ClientBuilder.standard().withCredentials(new AWSStaticCredentialsProvider(creds)).withRegion(region).build();
GeneratePresignedUrlRequest generatePresignedUrlRequest = new GeneratePresignedUrlRequest(bucketName, objectKey);
generatePresignedUrlRequest.setMethod(awsHttpMethod);
generatePresignedUrlRequest.setExpiration(expirationDate);
URL url = s3Client.generatePresignedUrl(generatePresignedUrlRequest);
代码生成的url类似于
但是,由于我们的广告系列命名标准包含点,因此调用上述网址会导致SSL: no alternative certificate subject name matches target host name 'com.mycompany.personalpictures.s3.amazonaws.com'
错误
我在this post中读到根本原因是存储桶名称中的点,并且使用https://s3.amazonaws.com/com.mycompany.personalpictures/picture123.png应该绕过问题。
如何使用网址格式https://s3.amazonaws.com/mybucket/myfile生成预先指定的网址?
答案 0 :(得分:1)
想出来......
创建s3客户端时需要使用.enablePathStyleAccess()。现在,代码行是
AmazonS3 s3Client = AmazonS3ClientBuilder.standard().withCredentials(new AWSStaticCredentialsProvider(creds)).withRegion(region).enablePathStyleAccess().build();