繁体   English   中英

使用 PHP,如何“在文件夹之间插入和移动文件”从 Google Cloud Platform 到 Google Drive?

[英]Using PHP, how do I "Insert and move files between folders" from Google Cloud Platform to Google Drive?

使用 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

您收到的错误是因为未导入 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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM