I am trying to use pre-singed urls to upload files to S3 and until a few minutes ago I believed it is possible (there is documentation on this issue), but I just encountered this phrase in the S3 developers guide:
Query string authentication is not supported for POST
What am I missing, By the way I am trying to use goamz (unofficial golang SDK for AWS) to do so and I keep getting signature errors.
EDIT: so far I figured out the signature, so I can sign the URL for GET, POST, PUT (I have not tried DELETE or PATCH they may work as well, if they are supported on the amazon part), right now my problem is I get zero size objects after I PUT), I'll post the code here when I make it work.
EDIT2: As mentioned below by @Basssethog it looks like, this problem is now solved in the official go-SDK