2013-05-13 106 views
0

我试图创建“卖方收存箱”,利用指令Google cloud storage documntation 的folloing组命令被执行:谷歌存储桶上传权限

创建铲斗

gsutil mb gs://customer-10  

添加外部用户权限

gsutil chacl -u [email protected]:FC gs://customer-10 

添加默认的ACL

gsutil chdefacl -u -u [email protected]:FC gs://customer-10 

验证ACL修改,使用命令 gsutil getacl gs://customer-10(succesfuly验证)

 <Entry> 
    <Scope type="UserByEmail"> 
     <EmailAddress>[email protected]</EmailAddress> 
     <Name>firstname lastname</Name> 
    </Scope> 
    <Permission>FULL_CONTROL</Permission> 
</Entry> 

但是当用户正在访问桶,使用链路 https://storage.cloud.google.com/?arg=customer-10&pli=1#customer-10

它是不是可能将任何文件上传到此存储桶。

我的方案中缺少什么?请帮助

回答

1

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