Your IP : 18.118.33.130
<?php require 'aws/aws-autoloader.php'; $IAM_KEY = 'AKIAJ5CIKVVAOZ7L33EQ'; $IAM_SECRET = 'bZCsYOY/yg4vqUxcwTXz2v/L2R5ElUeQn8GbXtmD'; use Aws\S3\S3Client; use Aws\S3\Exception\S3Exception; // Set Amazon S3 Credentials $s3 = S3Client::factory( array( 'credentials' => array( 'key' => $IAM_KEY, 'secret' => $IAM_SECRET ), 'version' => "latest", 'region' => 'ap-south-1' ) ); ?> |