3

这是我到目前为止所得到的,通过结合thisthis

require_once "google-api-php-client/src/Google_Client.php";
require_once "google-api-php-client/src/contrib/Google_DriveService.php";
require_once "google-api-php-client/src/contrib/Google_Oauth2Service.php";

//First, build a Drive service object authorized with the service accounts
$auth = new Google_AssertionCredentials(
    DRIVE_SERVICE_ACCOUNT_EMAIL,
    array( DRIVE_SCOPE ),
    file_get_contents( DRIVE_SERVICE_ACCOUNT_KEY )
);
$client = new Google_Client();
$client->setUseObjects( true );
$client->setAssertionCredentials( $auth );
$service = new Google_DriveService( $client );

//Then, insert the file
$file = new Google_DriveFile();
$file->setTitle( 'My document' );
$file->setMimeType( 'text/plain' );
$createdFile = $service->files->insert( $file, array(
    'data' => 'Hello world!',
    'mimeType' => 'text/plain',
));

print_r( $createdFile );

它可以工作,这意味着它会创建一个文本/纯文本文件并向我返回一个包含其元数据的数组。但是,我想要的是创建一个谷歌文档,而不是文本/纯文本。我当然尝试将 mime 类型(两种外观)更改为“application/vnd.google-apps.document”,但得到以下结果:

致命错误:未捕获的异常“Google_ServiceException”与消息“错误调用 POST https://www.googleapis.com/upload/drive/v2/files?uploadType=multipart : (400) Bad Request' in /local/path/to/ google-api-php-client/src/io/Google_REST.php:66

另外,我需要该文档可以公开访问。当我通过上述方法上传一个文本/纯文本文件,然后尝试浏览到它(从上传者的不同帐户),我被告知我需要许可。我仔细查看了数组$createdFile并注意到一个没有值的“共享”键,所以我很天真地尝试将其设置为 1:

$file->setShared( 1 );

它不起作用,而且,当我再次查看数组时,我注意到“共享”键仍然没有分配给它的值。我在网上寻找任何可能对我有帮助的文档,但没有运气。任何人都可以帮助我吗?谢谢!!

4

2 回答 2

9

经过大量阅读和测试,我找到了问题的答案。

问题是文件的“数据”参数:Google Docs 不能将纯文本作为数据(他们的数据需要包含一些标题或其他内容)。因此,通过删除“数据”参数(以及“mimeType”,为什么不),我得到的错误就消失了。

至于权限,解决方法是先创建具有默认权限的文件,然后添加一个新的。

下面我粘贴最少的代码来创建一个可公开访问的 Google Doc:

require_once "google-api-php-client/src/Google_Client.php";
require_once "google-api-php-client/src/contrib/Google_DriveService.php";
require_once "google-api-php-client/src/contrib/Google_Oauth2Service.php";

//Build the Drive Service object authorized with your Service Account
$auth = new Google_AssertionCredentials(
    DRIVE_SERVICE_ACCOUNT_EMAIL,
    array( DRIVE_SCOPE ),
    file_get_contents( DRIVE_SERVICE_ACCOUNT_KEY )
);
$client = new Google_Client();
$client->setUseObjects( true );
$client->setAssertionCredentials( $auth );
$service = new Google_DriveService( $client );

//Create the file
$file = new Google_DriveFile();
$file->setTitle( 'Hello world!' );
$file->setMimeType( 'application/vnd.google-apps.document' );
$file = $service->files->insert( $file );

//Give everyone permission to read and write the file
$permission = new Google_Permission();
$permission->setRole( 'writer' );
$permission->setType( 'anyone' );
$permission->setValue( 'me' );
$service->permissions->insert( $file->getId(), $permission );

print_r( $file );
于 2013-08-19T10:15:39.957 回答
1

我已将其作为 Moodle LMS 系统中的插件实现,这里是源代码,其中包括一个 PHP 类,该类实现创建和设置对文档的适当权限。 https://github.com/nadavkav/moodle-mod_googledrive

实际相关类在这里: https ://github.com/nadavkav/moodle-mod_googledrive/blob/master/classes/googledrive.php

于 2016-11-14T10:17:46.273 回答