Skip to content
Advertisement

Tag: amazon-s3

Format of S3 pre-signed URLs

I’m trying to create an S3 pre-signed URL in my JavaScript code using: After executing, my console log shows: The URL is https://myBucketName.s3.amazonaws.com/myAudioFile.mp3… but I think it should be showing: The URL is https://s3.amazonaws.com/myBucketName/myAudioFile.mp3… Why would it place the S3 bucket name before “s3.amazonaws.com” in the URL? In the past it was working fine using this method. Has the AWS

Advertisement