Google Apps Script のクイックスタート

クイックスタートでは、Google Workspace API を呼び出すアプリを設定して実行する方法について説明します。

Google Workspace のクイックスタートでは、API クライアント ライブラリを使用して、認証と承認フローの詳細の一部を処理します。ご自身でアプリを開発する際には、このクライアント ライブラリを使用することをおすすめします。このクイックスタートでは、テスト環境に適した簡素な認証方法を使用します。本番環境では、アプリに適したアクセス認証情報を選択する前に、認証と承認について学習することをおすすめします。

Directory API にリクエストを送信する Google Apps Script を作成します。

目標

  • 環境を構成します。
  • スクリプトを作成して構成します。
  • スクリプトを実行します。

前提条件

  • API アクセスが有効になっている Google Workspace ドメイン。
  • 管理者権限を持つ、そのドメイン内の Google アカウント

  • Google ドライブへのアクセス

スクリプトを作成する

  1. script.google.com/create に移動して、新しいスクリプトを作成します。
  2. スクリプト エディタの内容を次のコードに置き換えます。

adminSDK/directory/quickstart.gs
/**
 * Lists users in a Google Workspace domain.
 * @see https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/list
 */
function listUsers() {
  const optionalArgs = {
    customer: 'my_customer',
    maxResults: 10,
    orderBy: 'email'
  };
  try {
    const response = AdminDirectory.Users.list(optionalArgs);
    const users = response.users;
    if (!users || users.length === 0) {
      console.log('No users found.');
      return;
    }
    // Print the list of user's full name and email
    console.log('Users:');
    for (const user of users) {
      console.log('%s (%s)', user.primaryEmail, user.name.fullName);
    }
  } catch (err) {
    // TODO (developer)- Handle exception from the Directory API
    console.log('Failed with error %s', err.message);
  }
}

  1. [保存] をクリックします。
  2. [無題のプロジェクト] をクリックし、[Quickstart] と入力して、[名前を変更] をクリックします。

スクリプトを構成する

Directory API を有効にする

  1. Apps Script プロジェクトを開きます。
  1. [編集者] をクリックします。
  2. [サービス] の横にある [サービスを追加] をクリックします。
  3. Admin Directory API を選択し、[追加] をクリックします。

サンプルの実行

Apps Script エディタで [実行] をクリックします。

サンプルを初めて実行すると、アクセスを承認するよう求められます。

  1. [権限を確認] をクリックします。
  2. アカウントを選択してください。
  3. [許可] をクリックします。

スクリプトの実行ログがウィンドウの下部に表示されます。

次のステップ