使用Google Cloud Platform,我想完成以下网页https://developers.google.com/drive/api/v3/folder
上概述的步骤$folderId = '0BwwA4oUTeiV1TGRPeTVjaWRDY1E';
$fileMetadata = new Google_Service_Drive_DriveFile(array(
'name' => 'photo.jpg',
'parents' => array($folderId)
));
$content = file_get_contents('files/photo.jpg');
$file = $driveService->files->create($fileMetadata, array(
'data' => $content,
'mimeType' => 'image/jpeg',
'uploadType' => 'multipart',
'fields' => 'id'));
printf("File ID: %s\n", $file->id);
我已启用Drive API,并且说我不需要任何特殊的凭据,因为我已经在Google Cloud Platform中。运行上面的代码时,出现以下错误,
Fatal error: Class 'Google_Service_Drive' not found
答案 0 :(得分:1)
您遇到的错误是因为未导入Google库(具有Google_Service_Drive类)。
请确保您已成功完成快速入门中的步骤2(安装Google图书馆)[1]。或者,您可以将库手动下载到工作目录[2]。
另外,请确保在代码的开头有此行(它将导入所有类):
require __DIR__ . '/vendor/autoload.php';
我将您的代码与快速入门一起复制并测试了以下代码,并且工作正常(如果删除Google图书馆,它会提供与您的代码相同的错误):
<?php
require __DIR__ . '/vendor/autoload.php';
if (php_sapi_name() != 'cli') {
throw new Exception('This application must be run on the command line.');
}
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('G Suite Directory API PHP Quickstart');
$client->setScopes([Google_Service_Drive::DRIVE]);
$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
$client->setPrompt('select_account consent');
// Load previously authorized token from a file, if it exists.
// The file token.json stores the user's access and refresh tokens, and is
// created automatically when the authorization flow completes for the first
// time.
$tokenPath = 'token.json';
if (file_exists($tokenPath)) {
$accessToken = json_decode(file_get_contents($tokenPath), true);
$client->setAccessToken($accessToken);
// If there is no previous token or it's expired.
if ($client->isAccessTokenExpired()) {
// Refresh the token if possible, else fetch a new one.
if ($client->getRefreshToken()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
$client->setAccessToken($accessToken);
// Check to see if there was an error.
if (array_key_exists('error', $accessToken)) {
throw new Exception(join(', ', $accessToken));
// Save the token to a file.
if (!file_exists(dirname($tokenPath))) {
mkdir(dirname($tokenPath), 0700, true);
file_put_contents($tokenPath, json_encode($client->getAccessToken()));
return $client;
}
$client = getClient();
$driveService = new Google_Service_Drive($client);
$folderId =’XXXXXXXXXXXXXXXXXXXX’;
$fileMetadata = new Google_Service_Drive_DriveFile(array(
'name' => 'photo.jpg'
'parents' => array($folderId)
));
$content = file_get_contents('Moon.jpg');
$file = $driveService->files->create($fileMetadata, array(
'data' => $content,
'mimeType' => 'image/jpeg',
'uploadType' => 'multipart',
'fields' => 'id'));
printf("File ID: %s\n", $file->id);
[1] https://developers.google.com/drive/api/v3/quickstart/php
[2] https://github.com/googleapis/google-api-php-client/releases