แสดงผลป้ายกำกับจากทรัพยากรไฟล์

หน้านี้จะอธิบายวิธีแสดงผลป้ายกำกับที่เฉพาะเจาะจงจากแหล่งข้อมูลไฟล์ Google ไดรฟ์

หากต้องการระบุป้ายกำกับที่ต้องการเรียกข้อมูล ให้ใช้เมธอด files.get หรือเมธอดใดก็ได้ที่แสดงผลทรัพยากรไฟล์ เนื้อหาของคำขอต้องว่างเปล่า

หากทำสำเร็จ เนื้อหาการตอบกลับจะมีอินสแตนซ์ File

ตัวอย่าง

ตัวอย่างโค้ดต่อไปนี้แสดงวิธีใช้ fileId ร่วมกับ labelId เพื่อแสดงชุดป้ายกำกับที่เฉพาะเจาะจง ออบเจ็กต์ includeLabels จะเป็นรายการรหัสที่คั่นด้วยคอมมา ออบเจ็กต์ labelInfo ในพารามิเตอร์ fields มีป้ายกำกับที่ตั้งค่าไว้ในไฟล์และขอภายใน includeLabels

Java

File file = driveService.files().get("FILE_ID").setIncludeLabels("LABEL_ID,LABEL_ID").setFields("labelInfo").execute();

Python

file = drive_service.files().get(fileId="FILE_ID", includeLabels="LABEL_ID,LABEL_ID", fields="labelInfo").execute();

Node.js

/**
* Get a Drive file with specific labels
* @return{obj} file with labelInfo
**/
async function getFileWithSpecificLabels() {
  // 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 file = await service.files.get({
      fileId: 'FILE_ID',
      includeLabels: 'LABEL_ID,LABEL_ID',
      fields:'labelInfo',
    });
    return file;
  } catch (err) {
    // TODO (developer) - Handle error
    throw err;
  }
}

แทนที่ค่าต่อไปนี้

  • FILE_ID: fileId ของไฟล์ที่มีป้ายกำกับ
  • LABEL_ID: labelId ของป้ายกำกับที่จะส่งคืน หากต้องการค้นหาป้ายกำกับในไฟล์ ให้ใช้เมธอด files.listLabels

หมายเหตุ