Class User

使用者

與 Google 雲端硬碟中的檔案相關聯。使用者可以透過 File.getEditors()Folder.getViewers() 和其他方法存取。

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

方法

方法傳回類型簡短說明
getDomain()String取得與使用者帳戶相關聯的網域名稱。
getEmail()String取得使用者的電子郵件地址。
getName()String取得使用者的名稱。
getPhotoUrl()String取得使用者相片的網址。

內容詳盡的說明文件

getDomain()

取得與使用者帳戶相關聯的網域名稱。

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

回攻員

String:與使用者帳戶相關聯的網域名稱


getEmail()

取得使用者的電子郵件地址。只有在使用者擁有電子郵件地址的情況下 選擇分享地址 與執行指令碼的使用者位於同一網域,且網域管理員已允許 網域內的使用者可以查看其他使用者的電子郵件地址。

// Log the email address of all users who have edit access to a file.
var file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz');
var editors = file.getEditors();
for (var 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.
var file = DriveApp.getFileById('1234567890abcdefghijklmnopqrstuvwxyz');
var editors = file.getEditors();
for (var i = 0; i < editors.length; i++) {
  Logger.log(editors[i].getName());
}

回攻員

String:使用者的姓名;如果無法使用名稱,則為 null


getPhotoUrl()

取得使用者相片的網址。如果使用者的相片並非相片,這個方法會傳回 null 廣告。

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

回攻員

String:使用者的相片網址;如果相片無法使用,則輸入 null

已淘汰的方法