फ़ाइलें डाउनलोड और एक्सपोर्ट करना

Google Drive API, डाउनलोड और एक्सपोर्ट करने से जुड़ी कई तरह की कार्रवाइयों के साथ काम करता है. इन कार्रवाइयों के बारे में नीचे दी गई टेबल में बताया गया है:

कार्रवाइयां डाउनलोड करना
alt=media यूआरएल पैरामीटर के साथ files.get तरीके का इस्तेमाल करके ब्लॉब फ़ाइल का कॉन्टेंट.
alt=media यूआरएल पैरामीटर के साथ revisions.get तरीके का इस्तेमाल करके, ब्लॉब फ़ाइल का कॉन्टेंट, पुराने वर्शन में.
webContentLink फ़ील्ड का इस्तेमाल करके, ब्राउज़र में ब्लॉब फ़ाइल का कॉन्टेंट.
लंबे समय तक चलने वाले ऑपरेशन के दौरान, files.download तरीके का इस्तेमाल करके ब्लॉब फ़ाइल का कॉन्टेंट. Google Vids की फ़ाइलें डाउनलोड करने का यही एक तरीका है.
एक्सपोर्ट से जुड़ी कार्रवाइयां
Google Workspace दस्तावेज़ में मौजूद कॉन्टेंट को ऐसे फ़ॉर्मैट में रखें जिसे आपका ऐप्लिकेशन मैनेज कर सके. इसके लिए, files.export तरीका इस्तेमाल करें.
exportLinks फ़ील्ड का इस्तेमाल करके, ब्राउज़र में Google Workspace दस्तावेज़ का कॉन्टेंट.
exportLinks फ़ील्ड का इस्तेमाल करके, ब्राउज़र में Google Workspace दस्तावेज़ का पिछला वर्शन.
Google Workspace दस्तावेज़ का कॉन्टेंट, लंबे समय तक चलने वाले ऑपरेशन के दौरान files.download तरीके का इस्तेमाल करके.

फ़ाइल का कॉन्टेंट डाउनलोड या एक्सपोर्ट करने से पहले, पुष्टि करें कि उपयोगकर्ता files संसाधन पर मौजूद capabilities.canDownload फ़ील्ड का इस्तेमाल करके, फ़ाइल डाउनलोड कर सकते हैं.

यहां बताए गए फ़ाइल टाइप की जानकारी के लिए, फ़ाइल टाइप देखें. इन फ़ाइल टाइप में, BLOB और Google Workspace फ़ाइलें भी शामिल हैं.

इस गाइड के बाकी हिस्से में, डाउनलोड और एक्सपोर्ट करने से जुड़ी इन कार्रवाइयों को करने के बारे में पूरी जानकारी दी गई है.

ब्लॉब फ़ाइल का कॉन्टेंट डाउनलोड करना

Drive में सेव की गई ब्लॉब फ़ाइल डाउनलोड करने के लिए, files.get तरीके का इस्तेमाल करें. इसके लिए, डाउनलोड की जाने वाली फ़ाइल का आईडी और alt=media यूआरएल पैरामीटर डालें. alt=media यूआरएल पैरामीटर, सर्वर को बताता है कि कॉन्टेंट को डाउनलोड करने का अनुरोध, रिस्पॉन्स के वैकल्पिक फ़ॉर्मैट के तौर पर किया जा रहा है.

alt=media यूआरएल पैरामीटर, एक सिस्टम पैरामीटर है. यह Google के सभी REST API पर उपलब्ध होता है. अगर Drive API के लिए क्लाइंट लाइब्रेरी का इस्तेमाल किया जाता है, तो आपको इस पैरामीटर को साफ़ तौर पर सेट करने की ज़रूरत नहीं है.

यहां दिए गए कोड के सैंपल में, Drive API क्लाइंट लाइब्रेरी की मदद से फ़ाइल डाउनलोड करने के लिए, files.get तरीके का इस्तेमाल करने का तरीका बताया गया है.

Java

drive/snippets/drive_v3/src/main/java/DownloadFile.java
import com.google.api.client.googleapis.json.GoogleJsonResponseException;
import com.google.api.client.http.HttpRequestInitializer;
import com.google.api.client.http.javanet.NetHttpTransport;
import com.google.api.client.json.gson.GsonFactory;
import com.google.api.services.drive.Drive;
import com.google.api.services.drive.DriveScopes;
import com.google.auth.http.HttpCredentialsAdapter;
import com.google.auth.oauth2.GoogleCredentials;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Arrays;

/* Class to demonstrate use-case of drive's download file. */
public class DownloadFile {

  /**
   * Download a Document file in PDF format.
   *
   * @param realFileId file ID of any workspace document format file.
   * @return byte array stream if successful, {@code null} otherwise.
   * @throws IOException if service account credentials file not found.
   */
  public static ByteArrayOutputStream downloadFile(String realFileId) throws IOException {
        /* Load pre-authorized user credentials from the environment.
           TODO(developer) - See https://developers.google.com/identity for
          guides on implementing OAuth2 for your application.*/
    GoogleCredentials credentials = GoogleCredentials.getApplicationDefault()
        .createScoped(Arrays.asList(DriveScopes.DRIVE_FILE));
    HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(
        credentials);

    // Build a new authorized API client service.
    Drive service = new Drive.Builder(new NetHttpTransport(),
        GsonFactory.getDefaultInstance(),
        requestInitializer)
        .setApplicationName("Drive samples")
        .build();

    try {
      OutputStream outputStream = new ByteArrayOutputStream();

      service.files().get(realFileId)
          .executeMediaAndDownloadTo(outputStream);

      return (ByteArrayOutputStream) outputStream;
    } catch (GoogleJsonResponseException e) {
      // TODO(developer) - handle error appropriately
      System.err.println("Unable to move file: " + e.getDetails());
      throw e;
    }
  }
}

Python

drive/snippets/drive-v3/file_snippet/download_file.py
import io

import google.auth
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
from googleapiclient.http import MediaIoBaseDownload


def download_file(real_file_id):
  """Downloads a file
  Args:
      real_file_id: ID of the file to download
  Returns : IO object with location.

  Load pre-authorized user credentials from the environment.
  TODO(developer) - See https://developers.google.com/identity
  for guides on implementing OAuth2 for the application.
  """
  creds, _ = google.auth.default()

  try:
    # create drive api client
    service = build("drive", "v3", credentials=creds)

    file_id = real_file_id

    # pylint: disable=maybe-no-member
    request = service.files().get_media(fileId=file_id)
    file = io.BytesIO()
    downloader = MediaIoBaseDownload(file, request)
    done = False
    while done is False:
      status, done = downloader.next_chunk()
      print(f"Download {int(status.progress() * 100)}.")

  except HttpError as error:
    print(f"An error occurred: {error}")
    file = None

  return file.getvalue()


if __name__ == "__main__":
  download_file(real_file_id="1KuPmvGq8yoYgbfW74OENMCB5H0n_2Jm9")

Node.js

drive/snippets/drive_v3/file_snippets/download_file.js
/**
 * Downloads a file
 * @param{string} realFileId file ID
 * @return{obj} file status
 * */
async function downloadFile(realFileId) {
  // Get credentials and build service
  // TODO (developer) - Use appropriate auth mechanism for your app

  const {GoogleAuth} = require('google-auth-library');
  const {google} = require('googleapis');

  const auth = new GoogleAuth({
    scopes: 'https://www.googleapis.com/auth/drive',
  });
  const service = google.drive({version: 'v3', auth});

  fileId = realFileId;
  try {
    const file = await service.files.get({
      fileId: fileId,
      alt: 'media',
    });
    console.log(file.status);
    return file.status;
  } catch (err) {
    // TODO(developer) - Handle error
    throw err;
  }
}

PHP

drive/snippets/drive_v3/src/DriveDownloadFile.php
use Google\Client;
use Google\Service\Drive;
function downloadFile()
 {
    try {

      $client = new Client();
      $client->useApplicationDefaultCredentials();
      $client->addScope(Drive::DRIVE);
      $driveService = new Drive($client);
      $realFileId = readline("Enter File Id: ");
      $fileId = '0BwwA4oUTeiV1UVNwOHItT0xfa2M';
      $fileId = $realFileId;
      $response = $driveService->files->get($fileId, array(
          'alt' => 'media'));
      $content = $response->getBody()->getContents();
      return $content;

    } catch(Exception $e) {
      echo "Error Message: ".$e;
    }

}

.NET

drive/snippets/drive_v3/DriveV3Snippets/DownloadFile.cs
using Google.Apis.Auth.OAuth2;
using Google.Apis.Download;
using Google.Apis.Drive.v3;
using Google.Apis.Services;

namespace DriveV3Snippets
{
    // Class to demonstrate use-case of drive's download file.
    public class DownloadFile
    {
        /// <summary>
        /// Download a Document file in PDF format.
        /// </summary>
        /// <param name="fileId">file ID of any workspace document format file.</param>
        /// <returns>byte array stream if successful, null otherwise.</returns>
        public static MemoryStream DriveDownloadFile(string fileId)
        {
            try
            {
                /* Load pre-authorized user credentials from the environment.
                 TODO(developer) - See https://developers.google.com/identity for 
                 guides on implementing OAuth2 for your application. */
                GoogleCredential credential = GoogleCredential
                    .GetApplicationDefault()
                    .CreateScoped(DriveService.Scope.Drive);

                // Create Drive API service.
                var service = new DriveService(new BaseClientService.Initializer
                {
                    HttpClientInitializer = credential,
                    ApplicationName = "Drive API Snippets"
                });

                var request = service.Files.Get(fileId);
                var stream = new MemoryStream();

                // Add a handler which will be notified on progress changes.
                // It will notify on each chunk download and when the
                // download is completed or failed.
                request.MediaDownloader.ProgressChanged +=
                    progress =>
                    {
                        switch (progress.Status)
                        {
                            case DownloadStatus.Downloading:
                            {
                                Console.WriteLine(progress.BytesDownloaded);
                                break;
                            }
                            case DownloadStatus.Completed:
                            {
                                Console.WriteLine("Download complete.");
                                break;
                            }
                            case DownloadStatus.Failed:
                            {
                                Console.WriteLine("Download failed.");
                                break;
                            }
                        }
                    };
                request.Download(stream);

                return stream;
            }
            catch (Exception e)
            {
                // TODO(developer) - handle error appropriately
                if (e is AggregateException)
                {
                    Console.WriteLine("Credential Not found");
                }
                else
                {
                    throw;
                }
            }
            return null;
        }
    }
}

यह कोड सैंपल, लाइब्रेरी के ऐसे तरीके का इस्तेमाल करता है जो मौजूदा एचटीटीपी अनुरोध में alt=media यूआरएल पैरामीटर जोड़ता है.

आपके ऐप्लिकेशन से शुरू की गई फ़ाइल डाउनलोड की अनुमति, ऐसे दायरे के साथ होनी चाहिए जिससे फ़ाइल के कॉन्टेंट को पढ़ने का ऐक्सेस मिल सके. उदाहरण के लिए, drive.readonly.metadata स्कोप का इस्तेमाल करने वाले ऐप्लिकेशन के पास, फ़ाइल का कॉन्टेंट डाउनलोड करने की अनुमति नहीं होती. इस कोड सैंपल में, प्रतिबंधित “drive” फ़ाइल स्कोप का इस्तेमाल किया गया है. इससे उपयोगकर्ताओं को आपकी सभी Drive फ़ाइलें देखने और मैनेज करने की अनुमति मिलती है. Drive के स्कोप के बारे में ज़्यादा जानने के लिए, Google Drive API के स्कोप चुनना लेख पढ़ें.

बदलाव करने की अनुमतियां वाले उपयोगकर्ता, copyRequiresWriterPermission फ़ील्ड को false पर सेट करके, सिर्फ़ पढ़ने की अनुमति वाले उपयोगकर्ताओं के लिए, डाउनलोड करने पर पाबंदी लगा सकते हैं.

गुमराह करने वाली फ़ाइलों (जैसे कि नुकसान पहुंचाने वाला सॉफ़्टवेयर) को सिर्फ़ फ़ाइल का मालिक डाउनलोड कर सकता है. इसके अलावा, get क्वेरी पैरामीटर acknowledgeAbuse=true को शामिल करना ज़रूरी है, ताकि यह पता चल सके कि उपयोगकर्ता ने संभावित रूप से अनचाहे सॉफ़्टवेयर या गलत इस्तेमाल वाली अन्य फ़ाइलें डाउनलोड करने के जोखिम को स्वीकार कर लिया है. इस क्वेरी पैरामीटर का इस्तेमाल करने से पहले, आपके ऐप्लिकेशन को उपयोगकर्ता को इंटरैक्टिव तरीके से चेतावनी देनी चाहिए.

कुछ हिस्सा डाउनलोड करना

फ़ाइल का कुछ हिस्सा डाउनलोड करने का मतलब है कि फ़ाइल का सिर्फ़ कोई खास हिस्सा डाउनलोड किया जाए. Range हेडर के साथ बाइट रेंज का इस्तेमाल करके, फ़ाइल के उस हिस्से को डाउनलोड किया जा सकता है जिसे डाउनलोड करना है. उदाहरण के लिए:

Range: bytes=500-999

ब्लॉब फ़ाइल का कॉन्टेंट, किसी पुराने वर्शन में डाउनलोड करना

ब्लॉब फ़ाइलों के कॉन्टेंट को पुराने वर्शन में डाउनलोड करने के लिए, revisions.get तरीके का इस्तेमाल करें. इसके लिए, डाउनलोड की जाने वाली फ़ाइल का आईडी, बदलाव का आईडी, और alt=media यूआरएल पैरामीटर डालें. alt=media यूआरएल पैरामीटर से सर्वर को पता चलता है कि जवाब के वैकल्पिक फ़ॉर्मैट के तौर पर, कॉन्टेंट को डाउनलोड करने का अनुरोध किया जा रहा है. files.get की तरह, revisions.get वाले तरीके में भी वैकल्पिक क्वेरी पैरामीटर acknowledgeAbuse और Range हेडर को स्वीकार किया जाता है. बदलाव डाउनलोड करने के बारे में ज़्यादा जानकारी के लिए, फ़ाइल में किए गए बदलाव मैनेज करना देखें.

अनुरोध का प्रोटोकॉल यहां दिखाया गया है.

GET https://www.googleapis.com/drive/v3/files/{FILE_ID}/revisions/{REVISION_ID}?alt=media

ब्राउज़र में ब्लॉब फ़ाइल का कॉन्टेंट डाउनलोड करना

Drive पर सेव की गई ब्लॉब फ़ाइलों के कॉन्टेंट को ब्राउज़र में डाउनलोड करने के लिए, एपीआई के बजाय, files संसाधन के webContentLink फ़ील्ड का इस्तेमाल करें. अगर उपयोगकर्ता के पास फ़ाइल को डाउनलोड करने का ऐक्सेस है, तो उसे फ़ाइल और उसके कॉन्टेंट को डाउनलोड करने का लिंक दिया जाता है. उपयोगकर्ता को इस यूआरएल पर रीडायरेक्ट किया जा सकता है या उसे क्लिक किए जा सकने वाले लिंक के तौर पर उपलब्ध कराया जा सकता है.

लंबे समय तक चलने वाले ऑपरेशन के दौरान, ब्लॉब फ़ाइल का कॉन्टेंट डाउनलोड करना

लंबे समय तक चलने वाले ऑपरेशन के दौरान, ब्लॉब फ़ाइलों का कॉन्टेंट डाउनलोड करने के लिए, files.download तरीके का इस्तेमाल करें. इसके लिए, डाउनलोड की जाने वाली फ़ाइल के आईडी का इस्तेमाल करें. आपके पास बदलाव का आईडी सेट करने का विकल्प भी है. सिर्फ़ इस तरीके से Google Vids की फ़ाइलें डाउनलोड की जा सकती हैं. ज़्यादा जानकारी के लिए, लंबे समय तक चलने वाली कार्रवाइयों को मैनेज करना देखें.

Google Workspace के दस्तावेज़ का कॉन्टेंट एक्सपोर्ट करें

Google Workspace दस्तावेज़ का बाइट कॉन्टेंट एक्सपोर्ट करने के लिए, files.export तरीके का इस्तेमाल करें. इसके लिए, एक्सपोर्ट की जाने वाली फ़ाइल का आईडी और सही MIME टाइप डालें. एक्सपोर्ट किए जाने वाले कॉन्टेंट का साइज़ 10 एमबी से ज़्यादा नहीं होना चाहिए.

यहां दिए गए कोड सैंपल में, Drive API क्लाइंट लाइब्रेरी का इस्तेमाल करके, Google Workspace दस्तावेज़ को PDF फ़ॉर्मैट में एक्सपोर्ट करने के लिए, files.export तरीके का इस्तेमाल करने का तरीका बताया गया है:

Java

drive/snippets/drive_v3/src/main/java/ExportPdf.java
import com.google.api.client.googleapis.json.GoogleJsonResponseException;
import com.google.api.client.http.HttpRequestInitializer;
import com.google.api.client.http.javanet.NetHttpTransport;
import com.google.api.client.json.gson.GsonFactory;
import com.google.api.services.drive.Drive;
import com.google.api.services.drive.DriveScopes;
import com.google.auth.http.HttpCredentialsAdapter;
import com.google.auth.oauth2.GoogleCredentials;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Arrays;

/* Class to demonstrate use-case of drive's export pdf. */
public class ExportPdf {

  /**
   * Download a Document file in PDF format.
   *
   * @param realFileId file ID of any workspace document format file.
   * @return byte array stream if successful, {@code null} otherwise.
   * @throws IOException if service account credentials file not found.
   */
  public static ByteArrayOutputStream exportPdf(String realFileId) throws IOException {
    // Load pre-authorized user credentials from the environment.
    // TODO(developer) - See https://developers.google.com/identity for
    // guides on implementing OAuth2 for your application.
    GoogleCredentials credentials = GoogleCredentials.getApplicationDefault()
        .createScoped(Arrays.asList(DriveScopes.DRIVE_FILE));
    HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(
        credentials);

    // Build a new authorized API client service.
    Drive service = new Drive.Builder(new NetHttpTransport(),
        GsonFactory.getDefaultInstance(),
        requestInitializer)
        .setApplicationName("Drive samples")
        .build();

    OutputStream outputStream = new ByteArrayOutputStream();
    try {
      service.files().export(realFileId, "application/pdf")
          .executeMediaAndDownloadTo(outputStream);

      return (ByteArrayOutputStream) outputStream;
    } catch (GoogleJsonResponseException e) {
      // TODO(developer) - handle error appropriately
      System.err.println("Unable to export file: " + e.getDetails());
      throw e;
    }
  }
}

Python

drive/snippets/drive-v3/file_snippet/export_pdf.py
import io

import google.auth
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
from googleapiclient.http import MediaIoBaseDownload


def export_pdf(real_file_id):
  """Download a Document file in PDF format.
  Args:
      real_file_id : file ID of any workspace document format file
  Returns : IO object with location

  Load pre-authorized user credentials from the environment.
  TODO(developer) - See https://developers.google.com/identity
  for guides on implementing OAuth2 for the application.
  """
  creds, _ = google.auth.default()

  try:
    # create drive api client
    service = build("drive", "v3", credentials=creds)

    file_id = real_file_id

    # pylint: disable=maybe-no-member
    request = service.files().export_media(
        fileId=file_id, mimeType="application/pdf"
    )
    file = io.BytesIO()
    downloader = MediaIoBaseDownload(file, request)
    done = False
    while done is False:
      status, done = downloader.next_chunk()
      print(f"Download {int(status.progress() * 100)}.")

  except HttpError as error:
    print(f"An error occurred: {error}")
    file = None

  return file.getvalue()


if __name__ == "__main__":
  export_pdf(real_file_id="1zbp8wAyuImX91Jt9mI-CAX_1TqkBLDEDcr2WeXBbKUY")

Node.js

drive/snippets/drive_v3/file_snippets/export_pdf.js
/**
 * Download a Document file in PDF format
 * @param{string} fileId file ID
 * @return{obj} file status
 * */
async function exportPdf(fileId) {
  const {GoogleAuth} = require('google-auth-library');
  const {google} = require('googleapis');

  // Get credentials and build service
  // TODO (developer) - Use appropriate auth mechanism for your app
  const auth = new GoogleAuth({
    scopes: 'https://www.googleapis.com/auth/drive',
  });
  const service = google.drive({version: 'v3', auth});

  try {
    const result = await service.files.export({
      fileId: fileId,
      mimeType: 'application/pdf',
    });
    console.log(result.status);
    return result;
  } catch (err) {
    // TODO(developer) - Handle error
    throw err;
  }
}

PHP

drive/snippets/drive_v3/src/DriveExportPdf.php
use Google\Client;
use Google\Service\Drive;
function exportPdf()
{
    try {
        $client = new Client();
        $client->useApplicationDefaultCredentials();
        $client->addScope(Drive::DRIVE);
        $driveService = new Drive($client);
        $realFileId = readline("Enter File Id: ");
        $fileId = '1ZdR3L3qP4Bkq8noWLJHSr_iBau0DNT4Kli4SxNc2YEo';
        $fileId = $realFileId;
        $response = $driveService->files->export($fileId, 'application/pdf', array(
            'alt' => 'media'));
        $content = $response->getBody()->getContents();
        return $content;

    }  catch(Exception $e) {
         echo "Error Message: ".$e;
    }

}

.NET

drive/snippets/drive_v3/DriveV3Snippets/ExportPdf.cs
using Google.Apis.Auth.OAuth2;
using Google.Apis.Download;
using Google.Apis.Drive.v3;
using Google.Apis.Services;

namespace DriveV3Snippets
{
    // Class to demonstrate use of Drive export pdf
    public class ExportPdf
    {
        /// <summary>
        /// Download a Document file in PDF format.
        /// </summary>
        /// <param name="fileId">Id of the file.</param>
        /// <returns>Byte array stream if successful, null otherwise</returns>
        public static MemoryStream DriveExportPdf(string fileId)
        {
            try
            {
                /* Load pre-authorized user credentials from the environment.
                 TODO(developer) - See https://developers.google.com/identity for 
                 guides on implementing OAuth2 for your application. */
                GoogleCredential credential = GoogleCredential.GetApplicationDefault()
                    .CreateScoped(DriveService.Scope.Drive);

                // Create Drive API service.
                var service = new DriveService(new BaseClientService.Initializer
                {
                    HttpClientInitializer = credential,
                    ApplicationName = "Drive API Snippets"
                });

                var request = service.Files.Export(fileId, "application/pdf");
                var stream = new MemoryStream();
                // Add a handler which will be notified on progress changes.
                // It will notify on each chunk download and when the
                // download is completed or failed.
                request.MediaDownloader.ProgressChanged +=
                    progress =>
                    {
                        switch (progress.Status)
                        {
                            case DownloadStatus.Downloading:
                            {
                                Console.WriteLine(progress.BytesDownloaded);
                                break;
                            }
                            case DownloadStatus.Completed:
                            {
                                Console.WriteLine("Download complete.");
                                break;
                            }
                            case DownloadStatus.Failed:
                            {
                                Console.WriteLine("Download failed.");
                                break;
                            }
                        }
                    };
                request.Download(stream);
                return stream;
            }
            catch (Exception e)
            {
                // TODO(developer) - handle error appropriately
                if (e is AggregateException)
                {
                    Console.WriteLine("Credential Not found");
                }
                else
                {
                    throw;
                }
            }
            return null;
        }
    }
}

इस कोड सैंपल में, सीमित drive स्कोप का इस्तेमाल किया गया है. इससे उपयोगकर्ताओं को आपकी Drive की सभी फ़ाइलें देखने और मैनेज करने की अनुमति मिलती है. Drive के स्कोप के बारे में ज़्यादा जानने के लिए, Google Drive API के स्कोप चुनना लेख पढ़ें.

कोड सैंपल में, एक्सपोर्ट के MIME टाइप को application/pdf के तौर पर भी दिखाया गया है. Google Workspace के हर दस्तावेज़ के लिए, एक्सपोर्ट किए जा सकने वाले सभी MIME टाइप की पूरी सूची के लिए, Google Workspace के दस्तावेज़ों के लिए एक्सपोर्ट किए जा सकने वाले MIME टाइप लेख पढ़ें.

Google Workspace के दस्तावेज़ का कॉन्टेंट, ब्राउज़र में एक्सपोर्ट करना

Google Workspace के दस्तावेज़ के कॉन्टेंट को ब्राउज़र में एक्सपोर्ट करने के लिए, files संसाधन के exportLinks फ़ील्ड का इस्तेमाल करें. दस्तावेज़ के टाइप के आधार पर, उपलब्ध हर MIME टाइप के लिए, फ़ाइल और उसके कॉन्टेंट को डाउनलोड करने का लिंक दिया जाता है. उपयोगकर्ता को किसी यूआरएल पर रीडायरेक्ट किया जा सकता है या उसे क्लिक किए जा सकने वाले लिंक के तौर पर ऑफ़र किया जा सकता है.

Google Workspace पर मौजूद दस्तावेज़ का कॉन्टेंट, किसी ब्राउज़र पर पुराने वर्शन में एक्सपोर्ट करना

Google Workspace के दस्तावेज़ के कॉन्टेंट को ब्राउज़र में, किसी पुराने वर्शन में एक्सपोर्ट करने के लिए, revisions.get तरीके का इस्तेमाल करें. इसके लिए, डाउनलोड करने के लिए फ़ाइल का आईडी और बदलाव का आईडी डालें. इससे, एक्सपोर्ट करने का लिंक जनरेट होगा. इस लिंक से, दस्तावेज़ को डाउनलोड किया जा सकता है. अगर उपयोगकर्ता के पास फ़ाइल को डाउनलोड करने का ऐक्सेस है, तो फ़ाइल और उसका कॉन्टेंट डाउनलोड करने का लिंक दिखता है. उपयोगकर्ता को इस यूआरएल पर रीडायरेक्ट किया जा सकता है या उसे क्लिक किए जा सकने वाले लिंक के तौर पर दिखाया जा सकता है.

लंबे समय तक चलने वाले ऑपरेशन के दौरान, Google Workspace दस्तावेज़ का कॉन्टेंट एक्सपोर्ट करना

लंबे समय तक चलने वाले ऑपरेशन के दौरान, Google Workspace दस्तावेज़ का कॉन्टेंट एक्सपोर्ट करने के लिए, files.download तरीके का इस्तेमाल करें. इसके लिए, डाउनलोड की जाने वाली फ़ाइल का आईडी और बदलाव का आईडी डालें. ज़्यादा जानकारी के लिए, लंबे समय तक चलने वाली कार्रवाइयां मैनेज करना देखें.