Created
November 1, 2019 05:45
-
-
Save dhruvilg/51a4bdc2e049f84b744a0ed1f10767ca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$BUCKET_NAME = ''; | |
$IAM_KEY = ''; | |
$IAM_SECRET = ''; | |
require '../vendor/autoload.php'; | |
use Aws\S3\S3Client; | |
use Aws\S3\Exception\S3Exception; | |
//S3 connection | |
$s3 = S3Client::factory( | |
array( | |
'credentials' => array( | |
'key' => $IAM_KEY, | |
'secret' => $IAM_SECRET | |
), | |
'version' => 'latest', | |
'region' => 'us-east-1' | |
) | |
); | |
$keyPath = 'member1/IoT-Arduino-Monitor-circuit.png'; // file name(can also include the folder name and the file name. eg."member1/IoT-Arduino-Monitor-circuit.png") | |
//S3 connection | |
$fileName = 'IoT-Arduino-Monitor-circuit.png'; | |
$command = $s3->getCommand('GetObject', array( | |
'Bucket' => $BUCKET_NAME, | |
'Key' => $keyPath, | |
'ContentType' => 'image/png', | |
'ResponseContentDisposition' => 'attachment; filename="'.$fileName.'"' | |
)); | |
$signedUrl = $s3->createPresignedRequest($command, "+6 days"); | |
// Create a signed URL from the command object that will last for | |
// 6 days from the current time | |
$presignedUrl = (string)$signedUrl->getUri(); | |
//echo file_get_contents($presignedUrl); | |
echo '<!DOCTYPE html> | |
<html> | |
<body> | |
<h2>HTML Image</h2> | |
<img src="'.$presignedUrl.'" alt="Girl in a jacket" width="500" height="600"> | |
</body> | |
</html> | |
'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment