Google云端硬盘Api V3-如何获取存储配额

时间:2018-07-12 12:19:00

标签: php google-api google-drive-api google-api-php-client

我有我的$client,现在我需要了解信息

$service = new \Google_Service_Drive($this->client)

我试图这样做

$service->about->get()

但我收到此错误The 'fields' parameter is required for this method.

1 个答案:

答案 0 :(得分:2)

  

此方法需要'fields'参数。

错误消息指出files参数是必需的。

$optParams = array('fields' => '*');
$service->about->get($optParams);