CodeIgniter Forums
Need help connecting to Amazon S3 storage - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: Need help connecting to Amazon S3 storage (/showthread.php?tid=79469)

Pages: 1 2


RE: Need help connecting to Amazon S3 storage - chakycool - 06-28-2021

Ok Found the issue from the logs. I had to swap the key and secret when initializing the SDK service.

Thank you superior

Here is the right codeĀ 

PHP Code:
public static function aws($getShared true)
 {
 if (
$getShared) {
 return static::
getSharedInstance('aws');
 }

 
$config config('AWS');

 
$credentials = new \Aws\Credentials\Credentials$config->secretKey,$config->accessKey);
 
 
$sdk = new \Aws\Sdk([
 
'credentials' => $credentials,
 
'region' => $config->region,
 ]);

 return 
$sdk;
 }