我正在尝试从Google云端硬盘下载或转换文件。我使用下面的代码,我收到错误“Class'Google_Http_Request'not found”。我似乎无法找到我所缺少的东西。我错过了什么吗?必填文件?
我正在使用php-google-api-php-client(0.6.2-1)[universe]。
感谢。
$file = $service->files->get($drive_id);
//if actual file
//$downloadUrl = $file->getDownloadUrl();
//if a google doc
$downloadUrl = $file->getExportLinks();
if ($downloadUrl) {
$request = new Google_Http_Request($downloadUrl, 'GET', null, null);
$httpRequest = $service->getClient()->getAuth()->authenticatedRequest($request);
if ($httpRequest->getResponseHttpCode() == 200) {
return $httpRequest->getResponseBody();
} else {
// An error occurred.
return null;
}
} else {
// The file doesn't have any content stored on Drive.
return null;
}
答案 0 :(得分:0)
通常,php不会自动加载任何类。在基本术语中,您需要要求()正确的文件加载Google_Http_Request
,但是由于google drive api需要身份验证,您将遇到更多问题。
我建议您按照Google开发人员中心提供的更新说明进行操作:https://developers.google.com/drive/web/quickstart/php。快速入门甚至可以达到列表文件。