0

我尝试使用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

无法任何文件上传到此存储桶中。

我的场景中缺少什么?请帮忙

4

1 回答 1

1

此问题已在 gsutil 版本 3.37 中解决。目前它正在按记录工作。

于 2013-11-20T14:00:26.110 回答