tags:

views:

35

answers:

1

I would like to set up an Amazon S3 account, create a bucket, upload some data, and that this data will be available using HTTP GET with basic authentication.

I know that there are several ways to get the S3 data authenticated (query string and such), but I would like to be able to provide a simple username/password scheme for authentication.

Is this possible?

A: 

No this is not possible. You have to conform to Amazons Authentication API

Check out some of the of wrappers listed here.

willbt
are you sure? what about this? http://adroitlogic.org/samples-articles-and-tutorials/16-articles/61-http-basic-digest-and-aws-s3-authentication.html#1.1
Joe Hopfgartner