2017-02-22 188 views
1

我尝试使用下面的PHP代码上传与谷歌德云端硬盘API文件上传问题:PHP与谷歌云端硬盘API

<?php 

require_once 'src/Google/Client.php'; 
require_once 'src/contrib/Google_DriveService.php'; 
require_once __DIR__.'/vendor/autoload.php'; 


$client_id = 'YOUR CLIENT ID'; 
$client_secret = 'YOUR CLIENT SECRET'; 
$redirect_uri = 'http://localhost/modeloImpacto.php'; 
$client = new Google_Client(); 
$client->setClientId($client_id); 
$client->setClientSecret($client_secret); 
$client->setRedirectUri($redirect_uri); 
//$client->addScope("https://www.googleapis.com/auth/drive"); 
$client->setScopes(array('https://www.googleapis.com/auth/drive')); 
$service = new Google_Service_Drive($client); 

$fileMetadata = new Google_Service_Drive_DriveFile(array(
'name' => 'funcionou.jpg')); 
$content = file_get_contents('funcionou.jpg'); 
$file = $driveService->files->create($fileMetadata, array(
    'data' => $content, 
    'mimeType' => 'image/jpeg', 
    'uploadType' => 'multipart', 
    'fields' => 'id')); 
printf("File ID: %s\n", $file->id); 

?> 

但我遇到以下错误:

Fatal error: Class 'Google_ServiceResource' not found in C:\wamp64\www\src\contrib\Google_DriveService.php on line 25 

有人知道我做错了什么?

谢谢! Raffael Siqueira。

回答

0

尝试以下的PHP Quickstart步骤:

  • Step 1: Turn on the Drive API
  • Step 2: Install the Google Client Library
  • Step 3: Set up the sample
  • Step 4: Run the sample

而且,这是很好的检查Google API Client Upgrade Guide是否有可能会影响您的应用程序的任何更新。

希望这会有所帮助。

相关问题