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

クイックスタートでは、 Google Workspace API

Google Workspace クイックスタートでは、API クライアント ライブラリを使用して 認証と認可のフローの詳細を確認できます。おすすめの方法 独自のアプリ用のクライアント ライブラリを使用します。このクイックスタートでは、 テストに適したシンプルな認証アプローチ できます。本番環境では、Terraform の IAM 構成の 認証と認可 次の日付より前 アクセス認証情報の選択 選択することもできます

作成: Google Apps Script Reseller API へのリクエストを行う Compute Engine API です。

目標

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

前提条件

  • Google 販売パートナー ドメイン インスタンス。
  • 完全履行済みの Google Workspace パートナー契約。

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

スクリプトを作成する

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

adminSDK/reseller/quickstart.gs
/**
 * List Admin SDK reseller.
 * @see https://developers.google.com/admin-sdk/reseller/reference/rest/v1/subscriptions/list
 */
function listSubscriptions() {
  const optionalArgs = {
    maxResults: 10
  };
  try {
    const response = AdminReseller.Subscriptions.list(optionalArgs);
    const subscriptions = response.subscriptions;
    if (!subscriptions || subscriptions.length === 0) {
      console.log('No subscriptions found.');
      return;
    }
    console.log('Subscriptions:');
    for (const subscription of subscriptions) {
      console.log('%s (%s, %s)', subscription.customerId, subscription.skuId,
          subscription.plan.planName);
    }
  } catch (err) {
    // TODO (developer)- Handle exception from the Reseller  API
    console.log('Failed with error %s', err.message);
  }
}

  1. [保存] をクリックします。
  2. [無題のプロジェクト] をクリックし、 クイックスタートをクリックし、[名前を変更] をクリックします。

スクリプトを構成する

Reseller API を有効にする

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

サンプルの実行

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

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

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

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

<ph type="x-smartling-placeholder"> <ph type="x-smartling-placeholder">

次のステップ