aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
MikeE 2021-05-27T12:56:39.011800Z

Hello - I need to generate a signed url to allow client uploading to an S3 bucket and I don’t see in the aws-api library any way to actually do that.. There’s a long standing https://github.com/cognitect-labs/aws-api/issues/5 saying it’s in progress so I’m wondering how folks are doing this. I could include the java AWS SDK core (i’m assuming that’s where the v4 signing utility lives) in my project.clj and use interop but wasn’t sure if there was a better solution.

alexmiller 2021-05-27T13:17:57.012400Z

That’s probably a good solution for now

MikeE 2021-05-27T13:24:36.012700Z

Thanks @alexmiller!

viesti 2021-05-27T13:44:22.013700Z

Here's an example for using the aws java sdk v2 for presigning: https://gist.github.com/viesti/4fbe2e226b923adebadffcf44a3ed8e7

lukasz 2021-05-27T13:46:30.013800Z

We solved it by including the java sdk, it works fine

MikeE 2021-05-27T14:08:35.014300Z

thank you @viesti!

MikeE 2021-05-27T14:19:50.014900Z

your gist worked great