我正在尝试将材料添加到"关于" Google Apps脚本中的Google课堂部分。这应该很容易,但它不起作用。它给了我以下错误:"当然:没有指定课程"。我100%知道courseId是下面脚本中给出的那个,因为我已经为它添加了赋值。
<yourapp>.firebaseapp.com
如果我尝试以下方式,则不会给出错误消息,但没有任何内容添加到&#34;关于&#34;部分。
function addMaterial () {
var ID = Classroom.Courses.get("10404033071");
var nm = {
title: "test",
materials: [{link:{url: "URL"},}],
}
var CC = Classroom.newCourseMaterialSet(nm);
Classroom.Courses.update(CC, ID);
}
答案 0 :(得分:0)
不幸的是,据我所知,courseMaterialSets
似乎是Google Classroom API v1中的只读属性。
API LINK, See the description, of courseMaterialSets
in the
"Fields" Area