How To Upload Images to Amazon S3 Using Perl?

…衆ロ難τιáo~ 提交于 2020-01-23 00:35:47

问题


I'm trying to upload files to S3 using Perl.

According to this module:

http://metacpan.org/pod/Amazon::S3::Bucket

...the following code will upload text files:

# 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',
   }
);

However, how do you upload images (GIF, JPEG, PNG) to S3?

Thanks,

Linda


回答1:


That code won't upload the file - it's simply setting the value associated with the key "testing.txt" to "T". If you want to upload a file you could use the add_key_filename method:

The method works like add_key except the value is assumed to be a filename on the local file system. The file will be streamed rather then loaded into memory in one big chunk.

Something like:

$bucket->add_key_filename(
    'image-key.jpg',
    'local-filename.jpg',
    {
        content_type => 'image/jpeg',
    }
);

Adjust the content type as required.



来源:https://stackoverflow.com/questions/12757574/how-to-upload-images-to-amazon-s3-using-perl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!