好的,所以我尝试了几种方法来使文件上传到我的S3帐户.终于发现自己到了BOOM——混乱的文档和奇怪的错误消息似乎与自己矛盾.
好的,首先,我不使用作曲家或类似的工具,我以老式的方式进行操作:
require '/path/to/aws-autoload.php';
现在,这可以正确加载,并且我已将自动加载调整为仅使用Common和S3类-不需要所有内容!
接下来,我加载S3客户端和凭据:
use Aws\S3\S3Client;
use Aws\Common\Credentials\Credentials;
现在,开始魔术发生的代码:
$file = '/path/to/' . $filename;
$credentials = new Credentials('KEY', 'SECRET KEY');
$s3 = S3Client::factory(array('credentials' => $credentials));
try{
$s3->putObject(array(
'Bucket' => 'sub.domain.com.s3.amazonaws.com',
'Body' => fopen($file, 'r'),
'ACL' => 'public-read',
));
} catch (S3Exception $e) {
$result = array(
'ok' => false,
'descr' => 'There was an error uploading the file to S3 : ' . $filename
);
}
我似乎遇到的问题是“存储桶”本身.
当我将存储桶格式化为sub.domain.com时,我从AWS API收到以下消息:
AWS Error Message: The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint: “sub.domain.com.s3.amazonaws.com”.
现在,当我更改“ Bucket”以匹配上面的内容时,如下所示:sub.domain.com.s3.amazonaws.com
我收到以下错误消息:
AWS Error Message: The specified bucket does not exist
难道我做错了什么?缺少什么吗?不幸的是,AWS文档还不够完善.该API目前似乎自相矛盾.我知道所有键都是正确的,并且所有权限都是正确的.根据自己的建议,它从301-重定向到404-未找到.
任何帮助/建议将不胜感激.我觉得我在这里转了圈!
解决方法:
这里有一些事情要仔细检查.
>如果存储桶是在某个区域(例如us-west-2)中创建的,请使用该区域[…,’region’=> ‘us-west-2’,…].
>“存储桶”参数应准确设置为存储桶的名称(例如,如果存储桶名为“ sub.domain.com”,则“存储桶”参数应设置为“ sub.domain.com”) .不要在“桶”参数中包含区域或“ s3.amazonaws.com”(即,桶!=端点). SDK会自动确定端点(基于客户端的区域和提供的存储桶名称),并根据需要调整URL的路径样式.
> PutObject操作需要’Key’参数,该参数在上面的代码示例中不存在.
标签:amazon-web-services,amazon-s3,aws-php-sdk,php
来源: https://codeday.me/bug/20191029/1957232.html