我正在尝试使用 Perl 将文件上传到 S3。
根据这个模块:
http://metacpan.org/pod/Amazon::S3::Bucket
...以下代码将上传文本文件:
# create resource with meta data (attributes)
my $keyname = 'testing.txt';
my $value = 'T';
$bucket->add_key(
$keyname, $value,
{ content_type => 'text/plain',
'x-amz-meta-colour' => 'orange',
}
);
但是,如何将图像(GIF、JPEG、PNG)上传到 S3?
谢谢,
琳达