如何使用PHP显示My Drive文件夹的文件夹和文件列表

时间:2013-01-31 14:01:45

标签: google-drive-api

任何人都可以让我知道如何从 Google云端硬盘访问我的云端硬盘的所有文件和文件夹。

我正在使用:

$client = new Google_Client();
// Get your credentials from the APIs Console
$client->setClientId('1095973606032-jkkjsp0ja5qdvp6f8p629964a2n0aqpn.apps.googleusercontent.com');
$client->setClientSecret('1Tkpr3IVYX5n7YtwR_cI3Sui');
$client-    >setRedirectUri('http://staging.test.jbiprojects.co.uk/google_drive/drive.php');
$client->setScopes('https://www.googleapis.com/auth/drive.file');

$service = new Google_DriveService($client);

$authUrl = $client->createAuthUrl();

我在这里做错了吗?

1 个答案:

答案 0 :(得分:0)

查看Google Drive SDK PHP Quickstart。如果您复制粘贴代码,它将帮助您启动并运行。

您应该拨打以下电话:

,而不是上传文件
$service->files->list

在此处查看files.list的PHP示例。