I have a Rails app set up so that when a user uploads an image, it is sent directly to Amazon's S3. I have to specify a redirect address in the form code. After the image is finished uploading, Amazon redirects the user to www.redirect_address.com/?bucket=[BUCKET]&key=[KEY]&etag=[ETAG]
I need the bucket
and key
info to process the image, but is there a way for the user not to see all those parameters in the address box. A way where I can still get all that info and all the user sees is www.redirect_address.com
Thanks!
Tim