var ClassroomID=305126825015
var TeacherslistID=[[email protected], [email protected], [email protected], [email protected], [email protected]];
for (K = 0; K < TeacherslistID.length; K++)
{
Classroom.Courses.Teachers.remove({"userId":TeacherslistID[K]},ClassroomID);
}
错误:GoogleJsonResponseException:对classroom.courses.teachers.delete的API调用失败并出现错误:找不到请求的实体。
我确认了我用来创建课程的老师的ID在其他方法(如classroom.courses.teachers.create)上运行良好,所以不知道我是否在这里犯了错误。我可以错过一些东西吗?
要在 Apps 脚本中使用 Classroom API 删除教师,您需要使用
Classroom.Courses.Teachers.remove(courseId: string, userId: string)
您可以在键入
时检查参数并等待显示支持选项卡。Classroom.Courses.Teachers.remove(
var TeacherslistID=['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]'];
for (K = 0; K < TeacherslistID.length; K++)
{
Classroom.Courses.Teachers.remove(ClassroomID, TeacherslistID[K]);
}
我意识到这是事件发生后很久的事,但尝试这对我来说不起作用。 下面的两组代码都会导致错误 - “找不到所请求的实体”。 这很奇怪,因为如果我将“删除”更改为“创建”,该函数就会成功。
function removeStudents() {
//Classroom.Courses.Students.remove({
// userId: "[email protected]",
//}, 727305413955);
var ClassroomID=727305413955
var TeacherslistID="[email protected]";
Classroom.Courses.Teachers.remove({"userId":TeacherslistID},ClassroomID)
}
错误将此行列为有故障的行 课堂.课程.学生.删除
如有任何更新,我们将不胜感激。