- 自分の参加しているクラスしか取得はできない
- ドメイン管理者は全クラスが取得できる
となっています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getClassList(){ | |
var optionalArgs = { | |
pageSize: 100 //クラスの数が多い場合はここを増やす | |
}; | |
var response = Classroom.Courses.list(optionalArgs); | |
var courses = response.courses; | |
if (courses && courses.length > 0) { | |
for (i in courses) { | |
var course = courses[i]; | |
Logger.log(course.name); | |
Logger.log(course.id); | |
} | |
return course; | |
} else { | |
Logger.log('クラスが見つかりません'); | |
return null; | |
} | |
} |