本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
使用 第 3 版管理 Amazon S3 儲存貯體存取許可 AWS SDK for PHP
存取控制清單 (ACLs) 是資源型存取政策選項之一,可用來管理對儲存貯體和物件的存取。您可以使用 ACLs 將基本讀取/寫入許可授予其他 AWS 帳戶。若要進一步了解,請參閱使用 管理存取權ACLs。
下列範例將說明:
-
使用 取得儲存貯體的存取控制政策GetBucketAcl。
-
使用 ACLs、 設定儲存貯體的許可PutBucketAcl。
所有 的範例程式碼 AWS SDK for PHP 都可在 上取得 GitHub
登入資料
在執行範例程式碼之前,請先設定您的 AWS 憑證,如 中所述憑證。然後匯入 AWS SDK for PHP,如 中所述基本使用。
取得並設定存取控制清單政策
匯入
require 'vendor/autoload.php'; use Aws\S3\S3Client; use Aws\Exception\AwsException;
範例程式碼
// Create a S3Client $s3Client = new S3Client([ 'profile' => 'default', 'region' => 'us-west-2', 'version' => '2006-03-01' ]); // Gets the access control policy for a bucket $bucket = 'amzn-s3-demo-bucket'; try { $resp = $s3Client->getBucketAcl([ 'Bucket' => $bucket ]); echo "Succeed in retrieving bucket ACL as follows: \n"; var_dump($resp); } catch (AwsException $e) { // output error message if fails echo $e->getMessage(); echo "\n"; } // Sets the permissions on a bucket using access control lists (ACL). $params = [ 'ACL' => 'public-read', 'AccessControlPolicy' => [ // Information can be retrieved from `getBucketAcl` response 'Grants' => [ [ 'Grantee' => [ 'DisplayName' => '<string>', 'EmailAddress' => '<string>', 'ID' => '<string>', 'Type' => 'CanonicalUser', 'URI' => '<string>', ], 'Permission' => 'FULL_CONTROL', ], // ... ], 'Owner' => [ 'DisplayName' => '<string>', 'ID' => '<string>', ], ], 'Bucket' => $bucket, ]; try { $resp = $s3Client->putBucketAcl($params); echo "Succeed in setting bucket ACL.\n"; } catch (AwsException $e) { // Display error message echo $e->getMessage(); echo "\n"; }