我有一个问题,我使用这个客户端从我的应用程序到谷歌驱动器 API。
但问题是我无法检查文件是否存在trashed。
这是我尝试的
$client = new \Google_Client();
$client->setScopes(\Google_Service_Drive::DRIVE);
$client->setAuthConfig(app_path().'/Credentials/gDrive.json');
$service = new \Google_Service_Drive($client);
$folder = $service->files->get("fileid");
无论它是否被丢弃,它总是返回为空。
偶然的你