Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
23 views

I’m facing an intermittent issue when uploading files to Amazon S3 from an Android app using a pre-signed PUT URL. Setup: Android app uploads directly to S3 via a pre-signed PUT URL. After receiving ...
AshVin C K's user avatar
0 votes
3 answers
110 views

I'm getting a 403 response when trying to use a presigned S3 put object URL in a Javascript fetch call. Here's what I've verified: The IAM role that generates the presigned URL can upload an object ...
jones-chris's user avatar
0 votes
1 answer
177 views

When uploading media to s3 bucket, i am introduced to a technique called pre-signed urls, where backend generate the url and frontend upload directly to that s3 url, So far it is good. The problem ...
Jamal Ahmed's user avatar
0 votes
0 answers
87 views

I'm using r2 bucket as storage and using presigned url to fetch the images, I'm also using transformation on top of it like https://sub.domain.com/cdn-cgi/image/quality=75/https://r2.cloudstorage.com/...
user30828473's user avatar
0 votes
1 answer
57 views

Context: Trying to download a file from Google Cloud Storage using a pre-signed URL with Spring Boot 3.4.4's RestClient. The same URL works perfectly with both RestTemplate and raw HttpURLConnection. ...
tschi's user avatar
  • 36
0 votes
0 answers
89 views

Context: I'm working on a React application where users select their profile image during onboarding. The image is uploaded to AWS S3, and a pre-signed URL is generated and sent to the frontend. Issue:...
Mario Barragan's user avatar
0 votes
0 answers
31 views

I am trying to write a rest-assured test, that uses a signed URL from a previous request, in order to upload a file. This is what I tried so far: try { uploadPathUrl = URLDecoder.decode(...
miruraluale's user avatar
0 votes
0 answers
48 views

I am using GCP signed urls to allow clients to download files from google cloud storage. We have a Private Service Connect open for our customers, allowing them to consume our platform over the GCP ...
Idan Dadon's user avatar
0 votes
0 answers
61 views

currently i have cloud function to get signed url, I place the service account json in my google secret manager, and access it trough my code. I've test the function in post man, using identity token ...
Keroppiiiii's user avatar
0 votes
1 answer
35 views

I am using the g2-file-upload library to upload a file to an S3 bucket via a signed URL. However, the issue is that g2-file-upload always uses the formData: { file: binary } format in the upload ...
Hemal Gondaliya's user avatar
1 vote
0 answers
152 views

Keep getting "An error occurred: you need a private key to sign credentials.the credentials you are currently using <class 'google.auth.compute_engine.credentials.Credentials'> just ...
Tubagus Farhan's user avatar
0 votes
0 answers
109 views

This seems like a silly question but I can't understand why the s3 presigned URL I generate through the AWS CLI correctly contains the region: <bucket-name>.s3.<region-name>.amazonaws.com, ...
Adam's user avatar
  • 70
0 votes
0 answers
98 views

I'm developing a feature where an audio message generated by the Eleven Labs API is stored in an AWS S3 bucket and should be sent to users through the WhatsApp Cloud API. Although the process works ...
Vinnicius Pereira's user avatar
0 votes
0 answers
88 views

I am facing an issue uploading a .tar.gz file to an s3 bucket using a presinged URL. If I upload any other file then it works without any error but with .tar.gz it does not give any error and does not ...
gagan's user avatar
  • 11
0 votes
1 answer
339 views

I have a project like so: Client -> Gateway API -> Lambda -> signed url; User takes signed url -> S3 Post. I am able to generate and return the signed url but every time I try to make a ...
Jacob Schwarzenberger's user avatar
1 vote
0 answers
229 views

I am trying to get excel files fetched by my web app to open the downloaded excel file automatically in the excel app installed on the users machine. i know you're supposed to use urls like so: ms-...
skyleguy's user avatar
  • 1,211
1 vote
1 answer
569 views

I want my react frontend to upload, delete images from AWS S3 using presigned URLs. I created a small application to test it out. Although I do get a presigned URL, the presigned URL seems to get into ...
Steve Maxwell's user avatar
2 votes
1 answer
673 views

I'm trying to generate s3 presigned url to upload video/mp4 files to a bucket from react app client in development mode in my localhost. However, I'm getting CORS error. But when I do the put request ...
reemwn's user avatar
  • 41
0 votes
0 answers
30 views

I want to upload images to a bucket using a pre-signed URL: aws s3 presign s3://mybucket/something1.png --expires-in 7200 and just for testing other types: aws s3 presign s3://mybucket/CV.pdf --...
Farzin Nasiri's user avatar
-1 votes
1 answer
86 views

I am trying to generate an uplaod presigned url where frontend is required to send the content type of file. I see that if fronend doesnt send this content type and i remove content type in params ...
user-usman's user avatar
1 vote
0 answers
384 views

When working with the AWS S3 service in .NET, generating a pre-signed URL for file uploads is a common task. However, while the AWS SDK for .NET provides functionality to generate pre-signed URLs ...
richie-torres's user avatar
0 votes
1 answer
347 views

Is it true you need to specify somehow put_object and method PUT when creating a presign URL. The official docs say you have to, but CLI doesn't support it https://docs.aws.amazon.com/code-library/...
Maks Hrech's user avatar
1 vote
1 answer
811 views

I have this code for sign s3 urls private URL generatePreSignedUrl(String s3Key, String s3Bucket, Date expiration, HttpMethod method) { GeneratePresignedUrlRequest generatePresignedUrlRequest =...
Ahmad M AbuGhozeh's user avatar
4 votes
1 answer
1k views

Trying to add metadata to my presigned url. The url generates and has the metadata included in the query string, but I am not able to submit my file with the metadata as it fails with 403 forbidden. ...
robert smith's user avatar
  • 1,001
0 votes
0 answers
380 views

Is this possible? I have looked (and looked again). Multipart uploads are clearly possible using regular presigned URLs (ie. PUT), but I can't find any documentation to suggest that you can use them ...
robert smith's user avatar
  • 1,001

1
2 3 4 5
13