Trying to understand S3...How do you limit access to a file you upload to S3? For example, from a web application, each user has files they can upload, but how do you limit access so only that user has access to that file? It seems like the query string authentication requires an expiration date and that won't work for me, is there another way to do this?
|
feedback
|
|
There are various ways to control access to the S3 objects:
| |||
|
feedback
|
| |||
|
feedback
|
|
You might find some help in this SO question's responses. | |||
|
feedback
|
|
You will have to build the whole access logic to S3 in your applications | |||
|
feedback
|
|
I've been dealing with this, too. Don, who wrote the S3 PHP class I'm using, pointed out you can use dirs inside buckets. So you can put your file in a dir with a random string and then redirect to that. mybucket.amazon.net/wef49kfe4j409jf4f4f9jdfd/myfile.zip While not at all secure, you can control access to it by changing permissions or creating and deleting it (keep the original securely in a different bucket) as necessary. | |||
|
feedback
|