Hey there, I have a fairly simple use case where I would like to use a REST API call to generate a pre-signed URL for R2, which allows to upload a specific filename.
I looked through the documentation but the closest thing I find to do that is using AWS cli https://developers.cloudflare.com/r2/examples/aws-cli/#generate-presigned-urls
Is it possible to avoid using the cli and generate a pre-signed URL simply using REST?
SDKs are, even on AWS S3 itself, usually the way to go, as the raw REST calls tend to get rather complicated if you have to account for all the possible cases. AWS does provide an SDK for a whole number of different languages, if Python isn’t your best choice.