DEV Community

Discussion on: AWS S3 file upload from client side

Collapse
 
matteojoliveau profile image
Matteo Joliveau

The alternative is to have your server generate a pre-signed POST URL that the client can invoke to upload the file. That way, you don't have to generate any credential to expose in the frontend, but the actual upload is done directly by the client.