如何使用PHP获取谷歌驱动器中的文件的文件ID

时间:2014-03-04 22:06:19

标签: php google-drive-api

嗨我已经googling了几个小时,关于如何使用idgoogle 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任何帮助将不胜感激。

1 个答案:

答案 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();