google drive / php请求可恢复上传

时间:2013-10-19 08:37:06

标签: php request google-drive-api

我如何在php中发送此请求?
https://developers.google.com/drive/manage-uploads#resumable

POST /upload/drive/v2/files?uploadType=resumable HTTP/1.1
Host: www.googleapis.com
Authorization: your_auth_token
Content-Length: 38
Content-Type: application/json; charset=UTF-8
X-Upload-Content-Type: image/jpeg
X-Upload-Content-Length: 2000000

{
  "title": "My File"
}

1 个答案:

答案 0 :(得分:1)

看看php curl。您可以使用它发出请求,并根据需要更改请求中的标题。

php docs

http://php.net/manual/en/book.curl.php

开头的教程

http://coderscult.com/php-curl-tutorial-and-example/

然而谷歌驱动有一个优秀的 api 所以为什么不使用它?

https://developers.google.com/drive/manage-uploads