我使用网络应用程序帐户并在使用该功能时
$files = $service->files->listFiles();
它仅显示API上传的文件,因此我无法在我访问的云端硬盘中执行搜索或任何相关内容。它是API问题,范围问题还是其他什么?谢谢。以下是我在脚本中使用的库。
require_once 'google-api-php-client/src/Google/Client.php';
require_once 'google-api-php-client/src/Google/Service/Oauth2.php';
require_once 'google-api-php-client/src/Google/Service/Drive.php';
对于范围:
$client->addScope(
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/drive.appfolder");