コースの招待を管理する

Classroom の招待リソースは、特定のコースの役割を持つコースへのユーザーの参加招待を表します。

各 Invitation リソースには次のフィールドがあります。

  • 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;
}