过去几天我一直在四处寻找这个问题的答案,但我一直无法找到我想要的解决方案。
我有一个使用 Google_Client 执行此任务的完整版本,但是我希望能够在不使用 Google_Client 的情况下执行此操作。我可以在不使用它的情况下创建存储桶,但不能创建对象。我根本无法理解谷歌文档(它很差)。
所以,我有一个下面的函数,它接受几个参数来尝试上传文件。我不确定需要输入什么$authheaders
,$post_fields
(帖子的正文)或网址。
public function upload_file($bucket, $fileName, $file, $fileType) {
// Check if we have auth token
if(empty($this->authtoken)) {
echo "Please login to Google";
exit;
}
// Prepare authorization headers
$authheaders = array(
"Authorization: Bearer " . $this->authtoken
);
$postbody = array();
//Http call for creating a file
$response = $this->http_call(self::FILE_UPLOAD_URL.$bucket.'/o?uploadType=multipart&name='.$fileName, $postbody, $authheaders);
// Has the file been created successfully?
if($response->success=="1") {
return array('status' => 'success', 'errorcode' =>'', 'errormessage'=>"", 'id' => $response->job->id);
}
else {
return $response;
}
}
http_call 函数:
public function http_call($url, $post_fields, $authheaders) {
// Make http call
$this->httpRequest->setUrl($url);
$this->httpRequest->setPostData(json_encode($post_fields));
$this->httpRequest->setHeaders($authheaders);
$this->httpRequest->send();
$response = json_decode($this->httpRequest->getResponse());
return $response;
}
对此的任何帮助将不胜感激。