简体   繁体   中英

AWS Credential error

I am trying to connect to AWS from my php application(Laravel). My intention is to use the AWS Media convert Service. Please see the code I have used.

$client = new MediaConvertClient([
    'profile' => 'default',
    'version' => '2017-08-29',
    'region' => 'us-west-1',
    'credentials' => [
        'key' => $key,
        'secret' => $secret,
    ],
]);

$URI = $client->getEndpoint();
$endpoints= $client->describeEndpoints();

This is the error I am getting.

Cannot read credentials from /.aws/credentials

Does anyone have an idea about how to resolve this issues?

Finally, I got the answer. Removing the below line helped me to read the credential from $key and $secret (which is defined in the configuration file)

'profile' => 'default',

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM