How do I create a signed public ‘share’ URL similar to the ‘Quick Share’ option in Spaces?
I am writing an application in Node.JS and would like to return a temporary access URL to the user so they can access a file stored in spaces for a set amount of time. The Space itself is set to Private and the files are all Private as well, so just giving a direct URL to them isn’t possible.
The DigitalOcean UI already has this “Quick Share” feature, but there doesn’t seem to be any documentation about what its doing to create that URL and I cant figure out how to sign the request correctly to generate one myself.
The URL parameters in question are, AWSAccessKeyId, Expires and Signature. The AWSAccessKeyId and Expires seem simple enough, but how do I go about calculating the signature?
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.
The AWS signature formats can be a bit complicated. Though the reason for making Spaces compatible with the S3 API is that there are already quite a few tools that can work with it. If you’re working with Node, I’d encourage you to use one of the existing libraries.
The aws-sdk-js can help generate these “pre-signed” URLs. Here’s a quick basic example of it’s usage:
You need to add ASL
How to achieve it using PHP?