फ़ाइल पर लेबल की सूची बनाना

आपके संगठन में कई लेबल हो सकते हैं. साथ ही, हर लेबल में किसी भी संख्या में फ़ील्ड हो सकते हैं. इस पेज पर, Google Drive की किसी एक फ़ाइल में मौजूद सभी लेबल को सूची में शामिल करने का तरीका बताया गया है.

फ़ाइल के लेबल की सूची देखने के लिए, files.listLabels तरीके का इस्तेमाल करें. अनुरोध का मुख्य हिस्सा खाली होना चाहिए. यह तरीका, हर पेज पर दिखाए जाने वाले लेबल की ज़्यादा से ज़्यादा संख्या सेट करने के लिए, वैकल्पिक क्वेरी पैरामीटर maxResults भी लेता है. अगर यह पैरामीटर सेट नहीं किया गया है, तो 100 नतीजे दिखाए जाते हैं.

अगर फ़ाइल पर लेबल लागू हो जाते हैं, तो रिस्पॉन्स के मुख्य हिस्से में, फ़ाइल पर लागू किए गए लेबल की सूची शामिल होती है. ये टाइप Label के items ऑब्जेक्ट में मौजूद होते हैं.

उदाहरण

नीचे दिए गए कोड सैंपल में, सही लेबल पाने के लिए लेबल के fileId का इस्तेमाल करने का तरीका बताया गया है.

Java

List<Label> labelList =
labelsDriveClient.files().listLabels("FILE_ID").execute().getItems();

Python

label_list_response = drive_service.files().listLabels(fileId="FILE_ID").execute();

Node.js

/**
* Lists all the labels on a Drive file
* @return{obj} a list of Labels
**/
async function listLabels() {
  // 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});
  try {
    const labelListResponse = await service.files.listLabels({
      fileId: 'FILE_ID',
    });
    return labelListResponse;
  } catch (err) {
    // TODO (developer) - Handle error
    throw err;
  }
}

FILE_ID को उस फ़ाइल के fileId से बदलें जिसके लेबल की सूची आपको चाहिए.