php - 为什么 Google_Service_Drive 文件的属性只返回 null?

我想列出与我的服务帐户共享的文件夹中的所有文件。我试图弄清楚哪些文件的“父”属性设置为文件夹 ID 或文件夹名称。但是,我输出的所有对象几乎所有字段都显示“NULL”。我已经搜索过 Google Drive API v3,但我什至无法在其中找到 listFiles() 函数。此外,文档建议使用 Files.list 函数输出文件列表,但是当我使用 Files.list 函数时,我收到一个错误,好像该方法不存在一样。所以我又开始使用 listFiles()...我的代码如下所示:

public function getTitlesAndIDs($folderID)
{

    // $capabilities = new \Google_Service_Drive_DriveFileCapabilities();
    // $capabilities->canListChildren = true;
    $files = $this->driveService->files->listFiles();

    var_dump($files);
}

尝试添加功能也只会返回 NULL。当我运行 listFiles() 时,我得到如下输出:

["files"]=>
  array(100) {
    [0]=>
    object(Google_Service_Drive_DriveFile)#77 (65) {
      ["collection_key":protected]=>
      string(6) "spaces"
      ["appProperties"]=>
      NULL
      ["capabilitiesType":protected]=>
      string(42) "Google_Service_Drive_DriveFileCapabilities"
      ["capabilitiesDataType":protected]=>
      string(0) ""
      ["contentHintsType":protected]=>
      string(42) "Google_Service_Drive_DriveFileContentHints"
      ["contentHintsDataType":protected]=>
      string(0) ""
      ["createdTime"]=>
      NULL
      ["description"]=>
      NULL
      ["explicitlyTrashed"]=>
      NULL
      ["fileExtension"]=>
      NULL
      ["folderColorRgb"]=>
...

为什么所有值都返回为 NULL,我该如何解决这个问题以便我可以按父文件夹搜索?是否有等效于 Files.list 函数的 php? 提前致谢。

最佳答案

首先,您需要确保服务帐户可以访问某些文件。一旦你这样做了,这应该能够列出文件。

$service = new Google_Service_Drive($client);

// Print the names and IDs for up to 10 files.
$optParams = array(
  'pageSize' => 10,
  'fields' => 'nextPageToken, files(id, name)'
);
$results = $service->files->listFiles($optParams);

if (count($results->getFiles()) == 0) {
  print "No files found.\n";
} else {
  print "Files:\n";
  foreach ($results->getFiles() as $file) {
    printf("%s (%s)\n", $file->getName(), $file->getId());
  }
}

从 PHP Quickstart 中提取的代码

https://stackoverflow.com/questions/46303483/

相关文章:

regex - RegExp 字符类中的范围乱序

php - Laravel - 使用 Query Builder 函数传递变量

apache-kafka - Zookeeper 安装在 Windows 10 上不起作用

bash - 在 MAC OSX 中比较 Bash 中的两个日期

css - 通过添加元素 React.js 的数量来更改 div 元素的高度

apache-spark-sql - pySpark groupby 中的条件聚合

c# - 可访问性不一致 : field type is less accessible than

python-3.x - Python KafkaConsumer 从时间戳开始消费消息

julia - 如何更改 Julia 中的最大递归深度?

oauth - 我如何测试是否已获得管理员同意