简体   繁体   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?

Using the Google Cloud Platform I want to complete the steps outlined on the following web page, https://developers.google.com/drive/api/v3/folder使用 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);

I have the Drive API enabled and it says I don't need any special credentials since I'm already in Google Cloud Platform.我启用了 Drive API,它说我不需要任何特殊凭据,因为我已经在 Google Cloud Platform 中了。 When I run the above code, I get the following error,当我运行上面的代码时,出现以下错误,

Fatal error: Class 'Google_Service_Drive' not found

The error you're getting it's because somehow the Google library (which has the Google_Service_Drive class) is not imported.您收到的错误是因为未导入 Google 库(具有 Google_Service_Drive 类)。

Be sure you're doing the step 2 (Installing Google Library) in the quickstart successfully [1].确保您已成功执行快速入门中的第 2 步(安装 Google 库)[1]。 Or you could manually download the library to your working directory [2].或者您可以手动将库下载到您的工作目录 [2]。

Also, be sure you have this line in the beginning of your code (It'll import all the classes):另外,请确保您的代码开头有这一行(它将导入所有类):

require __DIR__ . '/vendor/autoload.php';

I reproduced and tested the following code using your code together with the quickstart and worked fine (It gives the same error as your code if i delete the Google Library):我使用您的代码和快速入门复制并测试了以下代码并且工作正常(如果我删除 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 [1] https://developers.google.com/drive/api/v3/quickstart/php

[2] https://github.com/googleapis/google-api-php-client/releases [2] https://github.com/googleapis/google-api-php-client/releases

暂无
暂无

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

相关问题 如何使用PHP从我自己的网站上获取Google云端硬盘中的文件和文件夹列表? - How to get list of files and folders from Google Drive on my own website using PHP? Google Drive PHP API:无法将文件或文件夹插入子文件夹 - Google drive PHP API: unable to insert files or folders into subfolders 如何在谷歌云平台上从 PHP 7.0 升级到 7.3? - How do I upgrade from PHP 7.0 to 7.3 on google cloud platform? 我无法使用php在我的Google云端硬盘中看到通过api创建的文件和文件夹 - I can't see the files and folders created via api in my Google Drive using php 如何使用 PHP 和 Google Drive API 获取基于所有者的所有文件夹和文件 - How to get all folders & files based on Owner using PHP with Google Drive API 使用 Google Drive 上传文件夹中的文件 API - Upload Files In Folders Using Google Drive API 使用 Google Drive (PHP) 的视频流平台 - Video Streaming Platform using Google Drive (PHP) 如何使用PHP备份服务器文件将文件从服务器上传到Google云存储到Google服务器? - How can I upload files to google cloud storage from my server to google's server using PHP to backup my server files? 如何在PHP和Google Cloud Platform上部署PHP应用程序? - How can I deploy my PHP application on Google cloud Platform? 如何将php zip添加到服务器,我在谷歌云平台上使用wordpress - How to add php zip to server, I'm using wordpress on google cloud platform
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM