我已经使用了链接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:我想知道存储桶或文件夹是否存在加密?