drive_quota.php 371 B

123456789
  1. <?php
  2. require __DIR__ . '/vendor/autoload.php';
  3. $client = new Google\Client();
  4. $client->useApplicationDefaultCredentials();
  5. $client->setScopes([Google\Service\Drive::DRIVE]);
  6. $drive = new Google\Service\Drive($client);
  7. $about = $drive->about->get(['fields' => 'user, storageQuota']);
  8. header('Content-Type: application/json');
  9. echo json_encode($about, JSON_PRETTY_PRINT);