嗨我已经googling
了几个小时,关于如何使用id
将google drive
文件上传到php
..到目前为止,上传的文件是每个唯一命名,我发现这个答案,但它是python
..但我想要一个php
How can I get fileID or parentID in python Google-drive APIs ??这另一个是为PHP虽然但我不知道如何制作它工作.. https://developers.google.com/drive/v2/reference/files/insert任何帮助将不胜感激。
答案 0 :(得分:1)
答案就在问题中。
转到您引用的页面,您会找到
$createdFile = $service->files->insert($file, array(
'data' => $data,
'mimeType' => $mimeType,
));
// Uncomment the following line to print the File ID
// print 'File ID: %s' % $createdFile->getId();