634 questions
0
votes
0
answers
27
views
How can I set CloudFront Signed Cookies for restricted S3 access without a reverse-proxy?
Iβm building a system to serve private S3 assets via CloudFront Signed Cookiesβso end users can browse entire folders without issuing individual presigned URLs.
What I'm trying:
I have a CloudFront ...
0
votes
1
answer
48
views
When to use pre-signed vs public vs private file upload on aws s3
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 ...
0
votes
0
answers
39
views
How to upload a file directly to Linode Object Storage using flutter?
I want to upload files directly from my Flutter app to Linode Object Storage (which is S3-compatible).
Iβm currently using http.put to upload files, and I tried adding:
import 'dart:io';
import '...
0
votes
0
answers
67
views
Presigned Url with Image Transformation - Cloudflare
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/...
0
votes
0
answers
34
views
Presigned URL: generated with internal endpoint, accessed via an external one
I'm working with NooBaa (an S3-compatible object storage system) deployed on OpenShift.
My backend application, running within the OpenShift cluster, needs to generate S3 presigned URLs for objects. ...
0
votes
1
answer
42
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
40
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
86
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
24
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
29
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
91
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
42
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
113
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
53
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
532
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 ...