637 questions
0
votes
0
answers
28
views
Spring RestClient fails with GCS signed URL (403 SignatureDoesNotMatch) while RestTemplate/HttpURLConnection work
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.
...
0
votes
0
answers
35
views
Uploaded image to S3 but it's broken - ImagePicker issue?
Problem Description
S3 upload is successful, and the image object appears in the S3 bucket.
But when I try to view the uploaded image, it shows a broken image icon instead of the actual image.
The ...
0
votes
0
answers
83
views
Avatar component shows blank page between switching browser tabs
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:...
0
votes
0
answers
19
views
Upload File using PUT request to a Signed URL
I am trying to send a file to a signed URL using PUT request but the file is not uploading.
Below is my code:
const uploadToBucket = async (uploadUrl, fileUri, contentType, fileSize) => {
try {
...
0
votes
0
answers
23
views
Rest-assured test to upload a file to a signed URL
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(...
1
vote
2
answers
65
views
RDS StartDBInstanceAutomatedBackupsReplication preSignedURL (GovCloud) from Terraform
Trying to deploy Terraform aws_db_instance_automated_backups_replication resource to enable replication of rds backups from 1 region to another. Had this working in AWS commercial, but same deployment ...
0
votes
0
answers
38
views
How can you use GCP signed urls with Private Service Connect
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 ...
2
votes
1
answer
76
views
Cloud CDN Signed URL: Your client does not have permission to get URL /pathToFile/sample.mp3 from this server
I am using Cloud CDN to serve files privately to my app. My app calls a cloud function which will generate the signed URL and return it for access. My load balancer is connected with a backend bucket. ...
0
votes
0
answers
42
views
how to get signed url from non public bucket in google cloud storage?
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 ...
1
vote
2
answers
229
views
How to create presigned URL with AWS S3 JavaScript SDK imposing checksum verification
I am trying to create a predesigned POST request using the AWS Javascript SDK for S3, using the method createPresignedPost. The idea is to generate the URL and fields which should be used in a ...
0
votes
1
answer
28
views
ng2-file-upload: Avoid uploading file using FormData
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 ...
1
vote
2
answers
167
views
Using boto3 to get a presigned url for an S3 multi region access point
I have an EC2 instance in eu-west-2. I use python boto3 to generate a pre-signed URL that I return to the web browser to enable temporary access to files so that they can be displayed.
I've set up ...
1
vote
0
answers
71
views
How to get access to service account private key for PreSigned URLS?
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 ...
0
votes
1
answer
87
views
How do we restrict multiple uploads using the presigned url
I am writing a cdk app to generate a upload presigned url.
I want the presigned url to be used by the client for one upload. Once the upload is complete the url must be invalidated.
I do have a expiry ...
0
votes
0
answers
77
views
s3.get_presigned_url , different behavior Python SDK vs AWS CLI
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, ...