PHP - 使用Google Drive API上传时出现问题

时间:2017-02-22 12:26:56

标签: php api upload google-drive-api wamp

我正在尝试使用以下PHP代码使用de Google Drive 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。

1 个答案:

答案 0 :(得分:0)

请尝试执行PHP Quickstart

中的步骤
  
      
  • 第1步:开启Drive API
  •   
  • 第2步:安装Google客户端库
  •   
  • 第3步:设置样本
  •   
  • 第4步:运行示例
  •   

此外,如果有任何可能影响您应用的更新,最好查看Google API Client Upgrade Guide

希望这有帮助。