S3 object url is not secure(ssl) when opened in browser
问题 I am building a small REST API service to store and retrieve photos. For that, I am using S3 as following: public String upload(InputStream uploadedInputStream, Map<String, String> metadata, String group, String filename) { TransferManager tm = TransferManagerBuilder.standard() .withS3Client(amazonS3) .build(); ObjectMetadata objectMetadata = new ObjectMetadata(); objectMetadata.setContentType(metadata.get(Configuration.CONTENT_TYPE_METADATA_KEY)); // TODO: 26/06/20 Add content-type to