2016-03-28 166 views
0

我正在使用google api客戶端上傳文件到驅動器,運行google developer site中列出的快速啓動示例列出可正常工作的文件。無法重新聲明類Google_Service_Drive

爲了在特定的父文件夾中插入文件,我使用了兩個導致如下所示錯誤的對象(請參見下面兩行)。

線的造成錯誤(第二行導致錯誤):

$file = new Google_Service_Drive_DriveFile(); 
$parent = new Google_Service_Drive_ParentReference(); 

錯誤:

PHP Fatal error: Cannot redeclare class Google_Service_Drive in C:\xampp\htdocs\driveapi\vendor\google\apiclient\src\Google\Service\Drive.php on line 729 
PHP Stack trace: 
PHP 1. {main}() C:\xampp\htdocs\driveapi\drive_client.php:0 
PHP 2. spl_autoload_call() C:\xampp\htdocs\driveapi\drive_client.php:92 
PHP 3. Composer\Autoload\ClassLoader->loadClass() C:\xampp\htdocs\driveapi\drive_client.php:92 
PHP 4. Composer\Autoload\includeFile() C:\xampp\htdocs\driveapi\vendor\composer\ClassLoader.php:301 

全碼:(只顯示最後兩行由我添加的,其餘的是從谷歌開發人員網站)

<?php require __dir__ . '/vendor/autoload.php'; 

define('APPLICATION_NAME', 'drivephp'); 
define('CREDENTIALS_PATH', '~/.credentials/drive-php-quickstart.json'); 
define('CLIENT_SECRET_PATH', __dir__ . '/client_secret.json'); 
// If modifying these scopes, delete your previously saved credentials 
// at ~/.credentials/drive-php-quickstart.json 
define('SCOPES', implode(' ', array("https://www.googleapis.com/auth/drive"))); 

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(APPLICATION_NAME); 
    $client->setScopes(SCOPES); 
    $client->setAuthConfigFile(CLIENT_SECRET_PATH); 
    $client->setAccessType('offline'); 

    // Load previously authorized credentials from a file. 
    $credentialsPath = expandHomeDirectory(CREDENTIALS_PATH); 
    if (file_exists($credentialsPath)) { 
     $accessToken = file_get_contents($credentialsPath); 
    } 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->authenticate($authCode); 

     // Store the credentials to disk. 
     if (!file_exists(dirname($credentialsPath))) { 
      mkdir(dirname($credentialsPath), 0700, true); 
     } 
     file_put_contents($credentialsPath, $accessToken); 
     printf("Credentials saved to %s\n", $credentialsPath); 
    } 
    $client->setAccessToken($accessToken); 

    // Refresh the token if it's expired. 
    if ($client->isAccessTokenExpired()) { 
     $client->refreshToken($client->getRefreshToken()); 
     file_put_contents($credentialsPath, $client->getAccessToken()); 
    } 
    return $client; 
} 

/** 
* Expands the home directory alias '~' to the full path. 
* @param string $path the path to expand. 
* @return string the expanded path. 
*/ 
function expandHomeDirectory($path) { 
    $homeDirectory = getenv('HOME'); 
    if (empty($homeDirectory)) { 
     $homeDirectory = getenv("HOMEDRIVE") . getenv("HOMEPATH"); 
    } 
    return str_replace('~', realpath($homeDirectory), $path); 
} 

// Get the API client and construct the service object. 
$client = getClient(); 
$service = new Google_Service_Drive($client); 
$parentId = null; 

// Print the names and IDs for up to 10 files. 
$optParams = array(
//  'pageSize' => 10, 'fields' => 
//  "nextPageToken, files(id, name)" 
); 
$results = $service->files->listFiles($optParams); 

if (count($results->getFiles()) == 0) { 
    print "No files found.\n"; 
} else { 
    print "Files:\n"; 
    foreach ($results->getFiles() as $file) { 
     printf("%s (%s)\n", $file->getName(), $file->getId()); 
    } 
} 

$file = new Google_Service_Drive_DriveFile(); 
$parent = new Google_Service_Drive_ParentReference(); 

?> 

請幫忙。

回答

0

avil,我猜你遇到了同樣的問題,我遇到了。我跟着這個頁面上的「快速開始」的指令:

https://developers.google.com/drive/v3/web/quickstart/php#prerequisites

安裝appclient:1. *使用作曲家,然後它說,:

「下載並解壓縮該zip文件,並複製硬盤.php到vendor/google/apiclient/src/Google/Service /,替換現有文件。「

我得到了同樣的錯誤,並起了疑心,所以我檢查了GIT看着這個文件的歷史記錄:

https://github.com/google/google-api-php-client/blob/v1-master/src/Google/Service/Drive.php

你會發現該驅動器的「V1主」的版本。 php比2015年10月的發行版差不多2000行代碼。

從最新版本中缺少您的「Google_Service_Drive_ParentReference」(我正在尋找Google_Service_Drive_Property類)的所有代碼。

我從GIT repo的歷史記錄(2015年10月9日)中將代碼複製到我的Drive.php文件中,現在工作正常。

希望這會有所幫助,

+0

嗨,非常感謝您的幫助。我下載了舊版本的Drive.php,並且必須更改幾個函數(getFiles - > getItems和setName - > setTitle等),但最後它運行良好。 – avil