How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
1–10 of 14 posts
Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#2Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#3Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#4Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#5Does anyone know if the same thing is possible for Azure Blob Storage? I don't believe it is now, due to the Cross Origin Resource Sharing (CORS) limitations of Azure ( http://social.msdn.microsoft.com/Forums/en-US/windowsazureda... ), but I'd like to double check.
Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#6Because the beauty of filepicker is that a user is not locking up one of your processes while they spend minutes uploading a file.
Especially important on Heroku, for example. Though I'm sure a self hosted node server could fare better, I'd sooner stick it out with Filepicker.
Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#7Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#8But does this mean Javascript is talking to your server rather than S3? Because the beauty of filepicker is that a user is not locking up one of your processes while they spend minutes uploading a file. Especially important on Heroku, for example. Though I'm sure a self hosted node server could fare better, I'd sooner stick it out with Filepicker.
Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#9How is it 'direct' if there is an intermediary?
One additional point to note: this has been possible since 2008 (see http://aws.amazon.com/articles/1434) and strictly speaking doesn't need CORS. If you use a hidden FORM element that targets a hidden iframe you can do this without needing a browser that supports CORS: you do lose the upload progress information, however.
Re: How to allow direct file uploads from JavaScript to Amazon S3 signed by Python
#10But does this mean Javascript is talking to your server rather than S3? Because the beauty of filepicker is that a user is not locking up one of your processes while they spend minutes uploading a file. Especially important on Heroku, for example. Though I'm sure a self hosted node server could fare better, I'd sooner stick it out with Filepicker.