谷歌脚本将材料添加到"关于" Google课堂中的部分

时间:2018-01-04 00:07:54

标签: google-apps-script google-classroom

我正在尝试将材料添加到"关于" 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);
}

1 个答案:

答案 0 :(得分:0)

不幸的是,据我所知,courseMaterialSets似乎是Google Classroom API v1中的只读属性。

API LINK, See the description, of courseMaterialSets in the "Fields" Area