我正在尝试使用Google云端存储JSON API将Image上传到Google云存储桶。该文件正在上传,但没有显示任何内容。
<?php
if(isset($_POST["submit"]))
{
// Move uploaded file to a temp location
$uploadDir = 'temp/';
$filename=$_FILES["fileToUpload"]["name"];
$filesize=$_FILES["fileToUpload"]["size"];
$uploadFile = $uploadDir . basename($_FILES['fileToUpload']['name']);
$authheaders = array(
"Authorization: Bearer xxxxxx(my access token)",
"Content-Type: image/jpeg",
"Content-Length:".$filesize
); //The access-token has to be generate everytime after one-hour.
if (move_uploaded_file($_FILES['fileToUpload']['tmp_name'], $uploadFile))
{
// Prepare remote upload data
$uploadRequest = array(
'fileName' => basename($uploadFile),
'fileData' => file_get_contents($uploadFile)
);
// Execute remote upload
$curl = curl_init();
$url="https://www.googleapis.com/upload/storage/v1/b/[bucket_name]/o?uploadType=media&name=".$filename;
curl_setopt($curl, CURLOPT_URL,$url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $authheaders);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_TIMEOUT, 30);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $uploadRequest);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
}
}
?>
我通过以下方式上传图片: -
<!DOCTYPE html>
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload"><br>
<input type="submit" value="Upload Image" name="submit">
</form>
</body>
</html>
查看图像编号1,文件上传成功。但是当我点击它来查看它时,它就像第2张图像一样显示。
答案 0 :(得分:0)
您的文件确实显示在浏览器的Image Number 2中。
由于图片尺寸很小,因此在浏览器中不易显示。在your uploaded image中,它显示了一个小盒子,里面有四个盒子(2个白色,2个灰色)。您可以放大确认。我相信这是你上传的图片。
您可以尝试上传尺寸略大的不同图像,并确认它是否正常工作。
答案 1 :(得分:0)
根据documentation请求的正文(又名您的CURLOPT_POSTFIELDS
)应该只包含[JPEG_DATA]
(也就是您的file_get_contents($uploadFile)
)。
但是在您的示例中,您为正文提供了'fileName'
和'fileData'
的数组body property metadata names,Google Cloud Storage JSON API甚至无效https://www.perforce.com/blog/virtual-streams-windows-big-projects。
'fileName'
和'fileData'
数组解释为实际[JPEG_DATA]
,并将其呈现为JPEG文件,该文件将返回为您始终看到的小方块图像。