繁体   English   中英

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

[英]Why are the properties of Google_Service_Drive files only returning 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 快速入门中提取的代码

除了@DalmTo 所说的之外,还有一件重要的事情要明确指出:您几乎所有字段都收到NULL ,因为您没有提供字段列表, 'fields'作为可选参数。

除了 Google Drive API V3 属性(例如id, name, kinddescription ,开发人员还可以通过propertiesappProperties使用自定义文件属性。

https://developers.google.com/drive/api/v3/properties

Google Drive properties键/值对由您的应用程序控制和操作。

在整个 Google Drive V3 文档中,术语“属性”也指的是metadata 我发现这非常令人困惑。 https://developers.google.com/drive/api/v3/reference/files

在 Google Drive V2 中,有大量关于如何使用 PHP 操作键/值properties示例,但在 Google Drive V3 中, properties API 发生了显着变化,并且 PHP 代码示例非常稀少。

通过修改上面的示例代码,我能够检索我的自定义属性。

$service = new Google_Service_Drive($client);

// Print the names, IDs and properties for up to 10 files.
$optParams = array(
  'pageSize' => 10,
  'fields' => 'nextPageToken, files(id, name, properties)'
);
$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", "name: ".$file->getName(), "ID: ".$file->getId());
      foreach ($file->getProperties() as $key => $value) {
        printf("%s%s\n","-key: ".$key,", value: ".$value);
    }
  }
}

我想为那些登陆此页面寻找在 Google Drive V3 中操作propertiesappProperties的 PHP 示例的开发人员分享我对原始答案的扩展。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM