-1

我已经使用了链接https://developer.amazon.com/public/apis/experience/cloud-drive但是 PHP 没有像这种形式的签名 URL:

$authentication_params = "AWSAccessKeyId=".$AWS_S3_KEY;
$authentication_params.= "&Expires={$expires}";
$authentication_params.= "&Signature={$signature}";

return $link = "http://s3.amazonAWS.com/{$bucket}/{$resource}?{$authentication_params}";

所以我想知道我是否可以使用这种方法获取我的 Cloud Drive Amazon 文件夹中的文件,或者可能是文件 URL 共享...谢谢

PD:我想知道存储桶或文件夹是否存在加密?

4

1 回答 1

1

Amazon CloudDrive 是完全独立于 Amazon S3 的服务。

CloudDrive 由 Amazon 提供,而 S3 由 Amazon Web Services 提供。不同的团队为不同的目的制造不同的产品。

于 2015-01-11T06:30:28.410 回答