vote up 1 vote down star

Anyone got a working example of using ruby to post to a presigned URL on s3

flag

4 Answers

vote up 1 vote down

Can you provide more information on how a "presigned URL" works? Is it like this:

AWS::S3::S3Object.url_for(self.full_filename,
                          self.bucket_name, {
                            :use_ssl => true,
                            :expires_in => ttl_seconds
                          })

I use this code to send authenticated clients the URL to their S3 file. I believe this is the "presigned URL" that you're asking about. I haven't used this code for a PUT, so I'm not exactly sure if it's right for you, but it might get you close.

link|flag
vote up 0 vote down

Does anything on the s3 library page cover what you need? There are loads of examples there.

link|flag
Unfortunately not. And the RUBY S3 Gems don;t support the signed urls – macarthy Sep 18 '08 at 14:03
vote up 0 vote down

There are some generic REST libraries for Ruby; Google for "ruby rest client". See also HTTParty.

link|flag
vote up -1 vote down

I've managed to sort it out. Turns out the HTTP:Net in Ruby is has some short comings. Lot of Monkeypatch later I got it working.. More details when I have time. thank

link|flag
Provide the solution then. Otherwise Stack Overflow doesn't work. :) – Till Oct 19 '08 at 23:13
I agree! Post it! – Blaine Mar 4 at 5:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.