How to provide public but exclusive access to s3 objects

0

Hi, I am building an application where users can upload and play audio files. I am storing them in an S3 bucket and made access public to it so that web page can access them to be played by users. However, this has a flaw that once user is logged in, other user's files are not protected and can be tried to access by changing/guessing s3url. Though I can use encryption but still urls have to be public which does not seem an ideal solution.

Any suggestions will be appreciated.

Regards, Deepti

已提問 1 年前檢視次數 325 次
3 個答案
0
已接受的答案

Hi Deepti,

You can use presigned URLs to generate a URL that can be used to access your Amazon S3 buckets. When you create a presigned URL, you associate it with a specific action. You can share the URL, and anyone with access to it can perform the action embedded in the URL as if they were the original signing user. The URL will expire and no longer work when it reaches its expiration time.

For more information about this feature, please follow the link below: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-presigned-url.html

profile pictureAWS
已回答 1 年前
profile pictureAWS
專家
已審閱 1 年前
0

Can have 2 options

  1. Use presigned url for uplod to S3 - https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-presigned-url.html
  2. Use Cognito for user authentication, once authenticated pass the token to API gateway and then using that create a Lambda function to generate a unique URL for that user. The 2nd options is more secure and can access only user assigned objects.
AWS
Raju
已回答 1 年前
0

Thanks for your help. I implemented presigned URLs and made the bucket private. It is working perfectly without exposing s3 resources. I believe this is exactly what I needed to do in this scenario. Once again thank you.

已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南