我正在使用Google Drive SDK通过PHP上传文件。现在我想把Link作为字符串,以便我可以将它存储在我的数据库中。但是我对如何获得它没有任何想法..这是使用PHP在谷歌驱动器中创建文件的代码。
$file = new Google_DriveFile();
$file->setTitle( 'new_pdf' );
$file->setMimeType( 'application/pdf' );
$createdFile = $service->files->insert( $file, array(
'data' => $stringContent,
));
答案 0 :(得分:1)
您需要$ createdFile的一个属性。
属性列表位于https://developers.google.com/drive/v2/reference/files
您可能需要webContentLink
,但这取决于您打算如何使用该网址。