Class User

ผู้ใช้

ผู้ใช้ที่เชื่อมโยงกับไฟล์ใน Google ไดรฟ์ ผู้ใช้เข้าถึงได้จาก File.getEditors(), Folder.getViewers() และวิธีอื่นๆ

// Log the email address of all users who have edit access to a file.
const file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz');
const editors = file.getEditors();
for (let i = 0; i < editors.length; i++) {
  Logger.log(editors[i].getEmail());
}

เมธอด

วิธีการประเภทการแสดงผลรายละเอียดแบบย่อ
getDomain()Stringรับชื่อโดเมนที่เชื่อมโยงกับบัญชีของผู้ใช้
getEmail()Stringรับอีเมลของผู้ใช้
getName()Stringรับชื่อของผู้ใช้
getPhotoUrl()Stringรับ URL ของรูปภาพของผู้ใช้

เอกสารประกอบโดยละเอียด

getDomain()

รับชื่อโดเมนที่เชื่อมโยงกับบัญชีของผู้ใช้

// Log the domain names associated with all users who have edit access to a
// file.
const file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz');
const editors = file.getEditors();
for (let i = 0; i < editors.length; i++) {
  Logger.log(editors[i].getDomain());
}

รีเทิร์น

String — ชื่อโดเมนที่เชื่อมโยงกับบัญชีของผู้ใช้


getEmail()

รับอีเมลของผู้ใช้ อีเมลของผู้ใช้จะพร้อมใช้งานก็ต่อเมื่อผู้ใช้เลือกที่จะแชร์อีเมลจากหน้าการตั้งค่าบัญชี Google+ หรือผู้ใช้อยู่ในโดเมนเดียวกับผู้ใช้ที่เรียกใช้สคริปต์ และผู้ดูแลระบบโดเมนได้อนุญาตให้ผู้ใช้ทุกคนในโดเมนดูอีเมลของผู้ใช้รายอื่น

// Log the email address of all users who have edit access to a file.
const file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz');
const editors = file.getEditors();
for (let i = 0; i < editors.length; i++) {
  Logger.log(editors[i].getEmail());
}

รีเทิร์น

String — อีเมลของผู้ใช้ หรือสตริงว่างหากไม่มีอีเมล


getName()

รับชื่อของผู้ใช้ วิธีนี้จะแสดงผลเป็น null หากไม่มีชื่อผู้ใช้

// Log the names of all users who have edit access to a file.
const file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz');
const editors = file.getEditors();
for (let i = 0; i < editors.length; i++) {
  Logger.log(editors[i].getName());
}

รีเทิร์น

String — ชื่อผู้ใช้ หรือ null หากไม่มีชื่อ


getPhotoUrl()

รับ URL ของรูปภาพของผู้ใช้ วิธีนี้จะแสดงผล null หากรูปภาพของผู้ใช้ไม่พร้อมใช้งาน

// Log the URLs for the photos of all users who have edit access to a file.
const file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz');
const editors = file.getEditors();
for (let i = 0; i < editors.length; i++) {
  Logger.log(editors[i].getPhotoUrl());
}

รีเทิร์น

String — URL ของรูปภาพของผู้ใช้ หรือ null หากไม่มีรูปภาพ

วิธีการที่เลิกใช้งาน