Amazon S3 和 Cloud Drive 签名的 URL



我已经 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}";

所以我想知道我是否可以使用此方法获取云盘亚马逊文件夹中的文件,或者可能是文件 URL 共享......谢谢

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

Amazon

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

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

最新更新