コースの招待状を管理する

Classroom の招待リソースは、特定のコースロールでコースに参加するためのユーザーの招待を表します。

各招待状リソースには、次のフィールドが含まれています。

  • Classroom によって割り当てられた招待の id
  • 招待状を送信するユーザーの userId
  • ユーザーが招待されているコースの courseId
  • role 招待するユーザーがコースで持つコースロール

招待状を作成する

invitations.create() メソッドを呼び出して、ユーザーが指定したロールでコースに参加できるように招待を作成します。リクエスト本文に招待リソースを含め、courseIduserIdrole を指定します。

Java

classroom/snippets/src/main/java/CreateInvitation.java
Invitation invitation = null;
try {
  /* Set the role the user is invited to have in the course. Possible values of CourseRole can be
  found here: https://developers.google.com/classroom/reference/rest/v1/invitations#courserole.*/
  Invitation content =
      new Invitation().setCourseId(courseId).setUserId(userId).setRole("TEACHER");

  invitation = service.invitations().create(content).execute();

  System.out.printf(
      "User (%s) has been invited to course (%s).\n",
      invitation.getUserId(), invitation.getCourseId());
} catch (GoogleJsonResponseException e) {
  // TODO (developer) - handle error appropriately
  GoogleJsonError error = e.getDetails();
  if (error.getCode() == 404) {
    System.out.printf("The course or user does not exist.\n");
  }
  throw e;
} catch (Exception e) {
  throw e;
}
return invitation;

招待を取得する

特定の招待を取得するには、invitations.get() メソッドを呼び出し、招待の id を指定します。

Java

classroom/snippets/src/main/java/GetInvitation.java
Invitation invitation = null;
try {
  invitation = service.invitations().get(id).execute();
  System.out.printf(
      "Invitation (%s) for user (%s) in course (%s) retrieved.\n",
      invitation.getId(), invitation.getUserId(), invitation.getCourseId());
} catch (GoogleJsonResponseException e) {
  GoogleJsonError error = e.getDetails();
  if (error.getCode() == 404) {
    System.out.printf("The invitation id (%s) does not exist.\n", id);
  }
  throw e;
} catch (Exception e) {
  throw e;
}
return invitation;

招待に応じる

コースへの招待を承諾すると、招待が削除され、招待に指定されたロールでユーザーがコースに追加されます。招待を承諾するには、invitations.accept() メソッドを呼び出し、招待状の id を指定します。

Java

classroom/snippets/src/main/java/AcceptInvitation.java
try {
  service.invitations().accept(id).execute();
  System.out.printf("Invitation (%s) was accepted.\n", id);
} catch (GoogleJsonResponseException e) {
  GoogleJsonError error = e.getDetails();
  if (error.getCode() == 404) {
    System.out.printf("The invitation id (%s) does not exist.\n", id);
  }
  throw e;
} catch (Exception e) {
  throw e;
}

招待状を削除する

招待状を更新する唯一の方法は、招待状を削除して新しい招待状を作成することです。招待状を削除するには、invitations.delete() メソッドを呼び出して id を指定します。

Java

classroom/snippets/src/main/java/DeleteInvitation.java
try {
  service.invitations().delete(id).execute();
  System.out.printf("Invitation (%s) was deleted.\n", id);
} catch (GoogleJsonResponseException e) {
  GoogleJsonError error = e.getDetails();
  if (error.getCode() == 404) {
    System.out.printf("The invitation id (%s) does not exist.\n", id);
  }
  throw e;
} catch (Exception e) {
  throw e;
}