我正在使用以下链接来使用 Google Cloud Storage:
我想使用上述 API 中给出的插入函数上传对象。我正在使用 PHP。我使用的代码如下:
$StorageService = new Google_StorageService($client);
$objects = $StorageService->objects;
$gso = new Google_StorageObject();
$gso->setName('myobj');
$postbody = array(file_get_contents('buc.jpg'));
$resp = $objects->insert('mybucket', $gso, $postbody);
但我得到错误为:
致命错误: /home/www/public_html/abc/google 中的消息“错误调用 POST https://www.googleapis.com/storage/v1beta1/b/mybucket/o : (400) 必需”未捕获异常“Google_ServiceException” -api-php-client/src/io/Google_REST.php 第 66 行
我在做什么错请帮帮我..
我发送参数的方式存在一些问题。请如果有人知道帮助我..
这里有一个例子:
但那是在 Java 中请帮助我在 PHP 中做同样的事情。请帮帮我。