使用Google Drive API V3与他人共享文件时,如何设置文件的功能?

时间:2019-09-25 09:05:12

标签: php google-api google-drive-api google-api-php-client

我想在使用Google API V3与某人共享Google驱动器文件时设置canDownload = false, canCopy = false之类的功能。

目前,我正在为该文件设置多个权限,并且权限可以正常工作,但未设置功能。<​​/ p>

以下是用于设置权限和功能的代码:

putenv('GOOGLE_APPLICATION_CREDENTIALS=client_secret.json');
     $client = new Google_Client();
     $client->setApplicationName('xyz');
     $client->setAccessType("offline");    
     $client->useApplicationDefaultCredentials();
     $client->setSubject('abc@xyz.com');
     $client->setScopes(array('https://www.googleapis.com/auth/drive.file','https://www.googleapis.com/auth/drive'));
     $service = new Google_Service_Drive($client);
     $optParams = array('sendNotificationEmail'=> false);
     $capabilities = array('canDownload' => false, 'canCopy' => false );

     $permissiondata =insertPermissionview($service,$request['file_google_id'],$optParams, $capabilities, $request['email_id'],'user','reader');

     $newPermissiondata = new Google_Service_Drive_Permission();
     $newPermissiondata->setExpirationTime($request['permission_expires_on'].'T10:00:00-05:30');
     $newPermissiondata->setRole('reader');
     $permissiondatavalue=$service->permissions->update($request['file_google_id'],$permissiondata['id'],$newPermissiondata);

参考:https://developers.google.com/drive/api/v3/reference/files

所以,基本上,我的问题是如何禁用与使用Drive API共享google drive文件的读者的下载,复制,打印选项?

1 个答案:

答案 0 :(得分:2)

如果您查看fileresource的文档,则会发现这些字段都不可写。因此,执行file.update并设置这些字段将无效。我不认为您可以在创建文件时对其进行设置,因为在创建文件时可以下载并复制它会很有意义。这些字段很可能供Google内部使用。

enter image description here

enter image description here

permission resource仅允许您设置用户是否有权访问文件,而不是他们可以做什么。