How do you let only authorized user have access contents stored in Amazon's S3?

前端 未结 2 419
难免孤独
难免孤独 2021-02-03 10:54

Once you stored contents in S3 and make it public, then everyone have access to it. Is there a way to let only authorized users have access to the content stored in S3? For exam

相关标签:
2条回答
  • 2021-02-03 11:15

    The link given in the above answer is no longer correct -- Amazon had it's documentation reorganized. I think these are the correct pages to read:

    • http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?RESTAuthentication.html#RESTAuthenticationQueryStringAuth
    • http://s3.amazonaws.com/doc/s3-developer-guide/RESTAuthentication.html
    0 讨论(0)
  • 2021-02-03 11:18

    You want to read the section called 'Query String Request Authentication Alternative' found here

    It explains how to create a time-based expiring link to an S3 object

    You would then have to write the code that manages the users (the who owns which object part of your question).

    0 讨论(0)
提交回复
热议问题