Using Uploadify to POST Directly to Amazon S3
Can anyone tell me how to use Uploadify to upload directly to Amazon S3? My code is as follows: $('#fileInput').uploadify({ 'fileDataName' : 'file', 'uploader' : 'uploadify.swf', 'script' : 'http://BUCKET-NAME-GOES-HERE.s3.amazonaws.com/', 'cancelImg' : 'cancel.png', 'method' : 'post', 'auto' : true, 'onError': function (a, b, c, d) { alert('error '+d.type+": "+d.info + ' name: ' + c.name + ' size: ' + c.size); }, 'scriptData' : { 'AWSAccessKeyId': "KEY-GOES-HERE", 'key': "${filename}", 'acl': "public-read", 'policy': "POLICY-STRING-GOES-HERE", 'signature': "SIGNATURE-GOES-HERE", 'success