0

我已经搜索了如何使用 php 在 googledriveapi 上上传文件。我使用了以下方法

$file-setMimetype='image/jpg';
$file->setTitle='abcd'
$service->files->insert($file).

它在 googledrive 上插入带有标题和 mimetype 的文件,但它是空的。我的问题是如何上传文件中包含的实际数据或内容,即如果我想将图像或 pdf 文件从我的系统上传到 googledrive。我该怎么做。请帮助我了解如何在 $data 中发送实际数据。 $data 变量应包含的内容。

4

3 回答 3

2

在最近添加的快速入门页面中有一个 10 分钟的教程,介绍如何编写一个完整的 PHP 应用程序以将文件上传到云端硬盘:

<?php
require_once 'google-api-php-client/src/Google_Client.php';
require_once 'google-api-php-client/src/contrib/Google_DriveService.php';

$client = new Google_Client();
// Get your credentials from the APIs Console
$client->setClientId('YOUR_CLIENT_ID');
$client->setClientSecret('YOUR_CLIENT_SECRET');
$client->setRedirectUri('urn:ietf:wg:oauth:2.0:oob');
$client->setScopes(array('https://www.googleapis.com/auth/drive'));

$service = new Google_DriveService($client);

$authUrl = $client->createAuthUrl();

//Request authorization
print "Please visit:\n$authUrl\n\n";
print "Please enter the auth code:\n";
$authCode = trim(fgets(STDIN));

// Exchange authorization code for access token
$accessToken = $client->authenticate($authCode);
$client->setAccessToken($accessToken);

//Insert a file
$file = new Google_DriveFile();
$file->setTitle('My document');
$file->setDescription('A test document');
$file->setMimeType('text/plain');

$data = file_get_contents('document.txt');

$createdFile = $service->files->insert($file, array(
      'data' => $data,
      'mimeType' => 'text/plain',
    ));

print_r($createdFile);
?>
于 2012-08-22T20:38:11.723 回答
0

api 已经更新,文档没有相应更改。
因此,在“$file = new Google_DriveFile();”上方的 Claudio 评论中
应该更改为
$file = new Google_Service_Drive_DriveFile();

于 2014-11-30T17:54:53.313 回答
0

尝试这个:

$service->files->insert($file, array(
    'data' => $content,
    'mimeType' => $mimeType,        
));

您可以看一下如何插入文件的示例(单击到 PHP 选项卡)。尝试先上传text/plain带有内容的文件,图像数据可能需要在 base64 中编码,然后才能添加到内容中。

于 2012-08-22T13:43:54.167 回答