Skip to content

Instantly share code, notes, and snippets.

@onesword0618
Created December 25, 2018 15:30
Show Gist options
  • Select an option

  • Save onesword0618/ca326f06dec4d4ecfa7890808cd0c150 to your computer and use it in GitHub Desktop.

Select an option

Save onesword0618/ca326f06dec4d4ecfa7890808cd0c150 to your computer and use it in GitHub Desktop.
getPhotoUrl()
// ファイルIDを引数にファイル情報にアクセス
var file = DriveApp.getFileById('XXXXXX');
// ファイルの共同編集者を取得する
var editors = file.getEditors();
// 共同編集者のプロフィール画像のURLをログに出力する
for (var i = 0; i < editors.length; i++) {
Logger.log(editors[i].getPhotoUrl());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment