1

Google Driveから My Drive のすべてのファイルとフォルダにアクセスする方法を教えてください。

私は使っている :

$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();

ここで何か間違ったことをしていますか?

4

1 に答える 1

0

Googleドライブ SDK PHP クイックスタートを確認してください。コードをコピーして貼り付けると、起動して実行できます。

ファイルをアップロードする代わりに、次の呼び出しを行う必要があります。

$service->files->list

ここで、 files.listの PHP サンプルを確認してください。

于 2013-01-31T16:47:52.523 に答える