Home > Mobile >  "You don't have permission to upload files" - AWS S3 bucket
"You don't have permission to upload files" - AWS S3 bucket

Time:05-11

Trying to upload a video to AWS S3 bucket. Uploading smaller file as in PDF / txt - works. Each time uplaoding a video brings this error: Screenshot of the error

Tried different videos different bucket policies. Also tried to upload it public / private.

CodePudding user response:

From the AWS documentation:

For large files, Amazon S3 might separate the file into multiple uploads to maximize the upload speed. The Amazon S3 console might time out during large uploads because of session timeouts. Instead of using the Amazon S3 console, try uploading the file using the AWS Command Line Interface (AWS CLI) or an AWS SDK.

Here is the link: https://aws.amazon.com/premiumsupport/knowledge-center/s3-large-file-uploads/

  • Related