-
Notifications
You must be signed in to change notification settings - Fork 95
Open
Labels
Description
Does PutObject() URI encode the key string? These files are being uploaded to S3 with the key containing percent encoded characters:
my $output = $s3->PutObject(
Bucket => $bucket,
Key => 'example picture.jpg',
ACL => 'public-read',
Body => $data,
);
example picture.jpg is actually uploaded to S3 as example%20picture.jpg. Which means normal paths to it don't work because the URI becomes: example%2520picture.jpg
Not sure if this is a Paws issue or an AWS one 😄