我有我的$client
,现在我需要了解信息
$service = new \Google_Service_Drive($this->client)
我试图这样做
$service->about->get()
但我收到此错误The 'fields' parameter is required for this method.
答案 0 :(得分:2)
此方法需要'fields'参数。
错误消息指出files参数是必需的。
$optParams = array('fields' => '*');
$service->about->get($optParams);