Используя PHP, как мне «Вставить и переместить файлы между папками» с Google Cloud Platform на Google Drive? - PullRequest
1 голос
/ 17 июня 2019

Используя 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

1 Ответ

1 голос
/ 24 июня 2019

Ошибка, которую вы получаете, потому что библиотека Google (которая имеет класс Google_Service_Drive) не импортируется.

Убедитесь, что вы успешно выполнили шаг 2 (Установка Google Library) в быстром запуске [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

...