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

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

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

作成: Google Apps Script Google Classroom API にリクエストを送信できます。

目標

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

前提条件

  • Google Classroom が有効になっている Google for Education アカウント。

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

スクリプトを作成する

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

classroom/quickstart/quickstart.gs
/**
 * Lists 10 course names and ids.
 */
function listCourses() {
  /**  here pass pageSize Query parameter as argument to get maximum number of result
   * @see https://developers.google.com/classroom/reference/rest/v1/courses/list
   */
  const optionalArgs = {
    pageSize: 10
    // Use other parameter here if needed
  };
  try {
    // call courses.list() method to list the courses in classroom
    const response = Classroom.Courses.list(optionalArgs);
    const courses = response.courses;
    if (!courses || courses.length === 0) {
      console.log('No courses found.');
      return;
    }
    // Print the course names and IDs of the courses
    for (const course of courses) {
      console.log('%s (%s)', course.name, course.id);
    }
  } catch (err) {
    // TODO (developer)- Handle Courses.list() exception from Classroom API
    // get errors like PERMISSION_DENIED/INVALID_ARGUMENT/NOT_FOUND
    console.log('Failed with error %s', err.message);
  }
}

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

スクリプトを構成する

Google Classroom API を有効にする

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

サンプルの実行

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

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

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

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

次のステップ