我正在使用Google驱动器共享pdf或word之类的文件。我想授予共享者仅查看该文件而不下载的权限。从谷歌驱动器界面,我可以设置该权限,但以编程方式如何设置此权限。我正在使用PHP进行开发。
答案 0 :(得分:0)
使用permissions.create向用户,组或域授予其他权限。
尽管不完全相关,但此SO post演示了如何使用PHP为文件创建权限:
//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 );