Hacker News new | ask | show | jobs
by toomuchtodo 4517 days ago
I've always seen issues pushing objects directly to S3 from a browser using CORS. YMMV.
1 comments

You can specify CORS headers for S3, or you can just use a standard form POST.
You still need a stub API for generating the signature to sign the upload requests to S3, correct?
Not technically, but generally in practice. You can open things up permissions-wise but run the risk of folks uploading lots of large files. Keeping permissions locked down and doing a signature allows things like file size, location, etc. restrictions.