1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GASでログインユーザーのフルネームを取得する

Last updated at Posted at 2019-05-31

GASの勉強中につまづいた部分なので、備忘録として記載します。

やりたいこと

GASのスクリプト内で、アクティブユーザー情報以下2点を取得する。

  • メールアドレス
  • 取得メールアドレスの名前

下記で取得成功!

コード.gs
function accountName(){
  var emailaddress = Session.getActiveUser();
  var contact = ContactsApp.getContact(emailaddress).getFullName();
  return contact;
}

注意点。

取得メールアドレスの連絡先状態によっては、contactnull になってしまいます…。
自分宛にメールを送信し、既読にする事でnullから解放されましたが、理由は不明😭
原因解明ができたら追記します!

一緒に悩んでくれた同僚に感謝!

以上。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?