2

この方法を使用してファイルをダウンロードしようとしています

/**
 * Download a file's content.
 *
 * @param Google_DriveService $service Drive API service instance.
 * @param File $file Drive File instance.
 * @return String The file's content if successful, null otherwise.
 */
function downloadFile($service, $file) {
  $downloadUrl = $file->getDownloadUrl();
  if ($downloadUrl) {
    $request = new Google_HttpRequest($downloadUrl, 'GET', null, null);
    $httpRequest = Google_Client::$io->authenticatedRequest($request);
    if ($httpRequest->getResponseHttpCode() == 200) {
      return $httpRequest->getResponseBody();
    } else {
      // An error occurred.
      return null;
    }
  } else {
    // The file doesn't have any content stored on Drive.
    return null;
  }
}

そこにある:https://developers.google.com/drive/v2/reference/files/get

しかし、ライブラリのどこに含める必要がある2つのクラスを見つけることができるかわかりません:

  • Google_HttpRequest
  • Google_クライアント

ライブラリ: http://code.google.com/p/google-api-php-client/

4

1 に答える 1