I'm learning the Amazon S3 PHP API, and I want to save my Amazon keys if these are valid for login into an Amazon account or alert the user if he puts wrong keys via the following code:
$awsaccesskey = 'xxxxxxxxxxx';
$awssecretkey = 'xxxxxxxxxx/xxxxxxxxx';
$s3_object = new S3($awsaccesskey, $awssecretkey );
Now, how can I check whether theses keys are valid or invalid and save them in a database if correct, e.g.:
if('keys valid')
{
//save in database
}
else
{
// entered keys are invalid, plz check your keys
}
Does the object return any error if keys is valid or invalid?
I don't know how get an authentication response, could someone please suggest a solution for it? Thank You.
S3 Object ( )and put right key andprint_r($s3);its again returnsS3 Object ( )then how trace key validation with this. – hari maliya May 17 '12 at 12:28