Hi there,
I am trying to upload assets through the getSignedUrl method that the aws-sdk provides, a NodeJS backend with Axios where the upload happens from a VueJS 2 frontend. Now whatever combination i try, or the file is able to upload but always sets it to private and the wrong Content-Type, or i get 403 permission errors.
What i want to do is that the upload has an ACL that is public-read and the correct Content-Type.
The following is the code that i use:
To get a signed Url
const s3 = new AWS.S3({
accessKeyId: keys.spacesAccessKeyId,
secretAccessKey: keys.spacesSecretAccessKey,
signatureVersion: 'v4',
endpoint: 'https://fra1.digitaloceanspaces.com',
region: 'fra1'
});
app.get('/api/upload/image', (req, res) => {
const type = req.query.type;
s3.getSignedUrl('putObject', {
Bucket: 'vondel',
ContentType: type,
ACL: 'public-read',
Key: 'random-key'
}, (error, url) => {
if (error) {
console.log(error);
}
console.log('KEY:', key);
console.log('URL:', url);
res.send({ key, url });
});
});
This provides a signed url that looks like:
https://BUCKET.REGION.digitaloceanspaces.com/images/e173ca50-fafe-11e9-b18c-d3cfd4814069.png?Content-Type=image%2Fpng&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=NSX3EZOFXE57BAFSKDIL%2F20191030%2Ffra1%2Fs3%2Faws4_request&X-Amz-Date=20191030T102022Z&X-Amz-Expires=900&X-Amz-Signature=f6bcdcd35da5dc237f881a714ec9ca09cb7aa3f3ffbd2389648a7c30808ab56e&X-Amz-SignedHeaders=host%3Bx-amz-acl&x-amz-acl=public-read
Then for actually uploading the file i use the following:
await UploadService.uploadImage(uploadConfig.data.url, file, {
'x-amz-acl': 'public-read',
'Content-Type': file.type
});
With the service looking like:
async uploadImage (url, file, headers) {
await axios.put(url, file, headers.headers);
}
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
What i had to do to fix this issue, was going to the Settings page of my Spaces instance and add to the CORS section the following allowed Headers (i had previously set the Origin to be a wildcard as i am working from localhost, eventually you want to restrict this to a domain).
But add the allowed headers ‘Content-Type’ and ‘x-amz-acl’ to properly set the content type and the ACL.
This way i was able to upload an image to my DigitalOcean spaces with public permission and the right content type.
In my case, I needed to add all of the AWS headers, along with some common headers:
Common headers:
Amazon headers:
If you are applying a CORS policy to a specific domain that you trust, I’d consider just allowing all headers using a wildcard
*
.