我尝试使用Google 云存储文档中的说明创建“供应商保管箱”, 执行了以下命令集:
创建存储桶
gsutil mb gs://customer-10
添加外部用户权限
gsutil chacl -u user@company.com:FC gs://customer-10
添加默认acl
gsutil chdefacl -u -u user@company.com:FC gs://customer-10
使用命令验证 acl 修改
gsutil getacl gs://customer-10
(验证成功)
<Entry>
<Scope type="UserByEmail">
<EmailAddress>user@company.com</EmailAddress>
<Name>firstname lastname</Name>
</Scope>
<Permission>FULL_CONTROL</Permission>
</Entry>
但是当用户访问存储桶时,使用链接 https://storage.cloud.google.com/?arg=customer-10&pli=1#customer-10
无法将任何文件上传到此存储桶中。
我的场景中缺少什么?请帮忙