कोर्स के न्योतों को मैनेज करें

Classroom में न्योते का संसाधन, किसी उपयोगकर्ता को कोर्स की खास भूमिका वाले कोर्स में शामिल होने का न्योता भेजता है.

न्योते के हर संसाधन में ये फ़ील्ड शामिल होते हैं:

  • Classroom से मिले न्योते का id.
  • उस उपयोगकर्ता का userId जिस पर न्योता भेजा गया है.
  • उस कोर्स का courseId जिसके लिए उपयोगकर्ता को न्योता दिया जा रहा है.
  • role कोर्स की भूमिका जो न्योता पाने वाले उपयोगकर्ता को कोर्स में मिलेगी.

न्योता बनाएं

एक न्योता बनाएं, ताकि उपयोगकर्ता invitations.create() वाले तरीके को कॉल करके, तय की गई भूमिका वाले कोर्स में शामिल हो सके. अनुरोध के मुख्य हिस्से में, न्योते के संसाधन शामिल करें. साथ ही, courseId, userId, और role की जानकारी दें.

Java

classroom/snippets/src/main/java/Create शहर के न्योते.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/Get महिलाओं के लिए न्योते.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/एलिमेंट स्वीकार करें.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/DeleteInन्योता.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;
}