Questions tagged [signed-url]

52 questions
1
vote
0 answers

How can I implement a `return` URL in the email verification flow of a Laravel app?

I'm using Laravel 7.3 with the built-in user email verification flow. I'm trying to implement a 'return URL' into the flow, so that I can redirect a user to a specific URL after verifying their email. This is useful for when a user starts an action…
Mike
  • 8,767
  • 8
  • 49
  • 103
1
vote
1 answer

Node JS / Firebase Admin SDK / Firestore - Getting empty array after receiving firebase documents using snapshots

I'm trying to retrieve firebase documents and also get a signed URL to the associated image for that doc using snapshot.forEach block. I'm pushing the contents and the signed url as i receive them into an array so that i can return the whole array…
1
vote
0 answers

Android Unable to upload file to Google Cloud storage using signed url

I am trying to upload a file to Google Cloud Storage using the signed url generated by the backend server it gives this error SignatureDoesNotMatchThe request signature we calculated does not match the signature you provided. Check your Google…
1
vote
2 answers

Problems with redirecting to signed cloud storage URL (cURL?)

I am creating a Firebase HTTP function that uploads a file to Cloud Storage, creates a signed URL to the file, and then redirects the client to that URL. Using Postman with automatic redirect following turned on, the file is retrieved correctly.…
1
vote
1 answer

Access Denied Signed URL Python3 using cloud front

I am trying to create signed urls for my s3 bucket to which only select people will have access to until the time expires. I am not able to find the issue in my code. Please help import boto from boto.cloudfront import CloudFrontConnection from…
1
vote
1 answer

Google Cloud Storage Bucket CORS error although CORS policy set

I have a signedURL for a google cloud storage bucket, and I want to use it with axios to make a PUT request. My putFileData function is called when the variable signedURL is not empty, via useEffect. const putFileData = async () => { await…
Davtho1983
  • 3,827
  • 8
  • 54
  • 105
1
vote
0 answers

How to play hls content without saving the file as .m3u8?

I'm using PHP code to retrieve the content of .m3u8 with a Signed URL from AWS CloudFront. I can't be able to play the chunk .ts files inside it since you need also to sign their URL. So, using PHP code, I re-write the contents of .m3u8
Codeblooded Saiyan
  • 1,457
  • 4
  • 28
  • 54
1
vote
1 answer

Laravel's signedURL generates wrong URL when using api middlware

I have a front-end running on Nuxt and Laravel as a back-end service. When I generate the signedURL using the Laravel's API middleware - the path includes "api" in the URL, resulting into a page not found exception on the Nuxt side So, here are the…
George Sharvadze
  • 560
  • 9
  • 25
0
votes
1 answer

Issue with generating CloudFront signed URL in Nest.js application

I'm trying to generate a signed URL for a CloudFront resource in my Nest.js application using the AWS SDK, but I'm encountering an error that I can't seem to resolve. The error message I'm receiving is: Error: error:1E08010C:DECODER…
D Dev
  • 11
  • 2
0
votes
2 answers

How can I generate signed URLs for accessing Firebase Storage images?

I am making a web service with sveltekit and firebase. By the way, when users save images on firebase storage and other users try to use these images, I want to create a signed url and show it on the page to prevent Hotlink. I searched and found…
Viewee
  • 13
  • 2
0
votes
0 answers

Session Url for multipart upload

I am getting data from a video/screen recording. Since the data is in chunks of 1 second, I have implemented the multi part upload where i hit python backend for signed url. But this is leading to a lot of latency as getting url is becoming a…
0
votes
1 answer

why method for signing url for AWS CloudFront is not working when deployed on AWS Elastic Beanstalk (500 Error)?

I and my colleagues are developing Spring Boot project for study purpose. We use AWS S3 as cloud storage for storing images. Aslo we decided to use AWS CloudFront as content delivery network for retrieving images and use a CloudFront origin access…
0
votes
0 answers

Cloufront Signed URLs (or Cookies) for Wordpress Functions.php

I'm trying to implement signed urls for HLS videos on my wordpress site. Everything is already set from the AWS side (S3 & Cloudfront). I just need to add the php code in the functions.php file. Can anyone help me with that? A code snippet to insert…
0
votes
0 answers

AWS SDK generates wrong presigned url for reading an object

I am using S3 to store videos. And now, I am using presigned urls to restrict access to them. I am using these functions to generate the presigned url: var getVideoReadSignedUrl = async function (url) { const key =…
AG_HIHI
  • 1,705
  • 5
  • 27
  • 69
0
votes
0 answers

In which stage should I generate signed urls to load S3 bucket objects in an app?

I am using S3 to store images in my app. This is the function that generates the signed url that the user can use to upload an image: const key = `images/${Date.now()}.jpeg`; s3_config .getImageSignedUrl(key) .then((url) => { …
AG_HIHI
  • 1,705
  • 5
  • 27
  • 69