我使用https://developers.google.com/appengine/docs/php/googlestorage/中的简单示例 但我收到了拒绝的警告访问,这里是PHP代码:
function access(){
$options = [ "gs" => [ "Content-Type" => "text/plain" ]];
$ctx = stream_context_create($options);
file_put_contents("gs://mbucket/mFile.txt", "Hello", 0, $ctx);
return file_get_contents("gs://mBucket/mFile.txt");
}
答案 0 :(得分:1)
好像你需要允许从你的应用程序读取存储桶。