9. 使用https

S3 PHP SDK支持使用https的方式调用相关的接口,以保证安全性

9.1. 使用https

只需要将endpoint从http://nos-eastchina1.126.net修改为https://nos-eastchina1.126.net就可正常使用https的方式访问NOS

9.2. 实例

生成支持https的S3Client实例:

<?php
//只需要在生成S3Client实例的时候的endpoint中使用https即可
require './aws.phar';
use Aws\S3\S3Client;

$s3Client = new S3Client([
    'version'     => 'latest',
    'region'      => 'us-east-1',
    'credentials' => [
        'key'    => 'xxx',
        'secret' => 'xxx',
    ],
    'endpoint'      => 'https://nos-eastchina1.126.net'
]);