Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Сервис Classroom позволяет использовать API Google Classroom в Apps Script. Этот API предоставляет администраторам, преподавателям и учащимся возможность просматривать и управлять своими курсами и списками учащихся.
Ссылка
Подробную информацию об этом сервисе см. в справочной документации по API Google Classroom. Как и все расширенные сервисы в Apps Script, сервис Classroom использует те же объекты, методы и параметры, что и общедоступный API. Подробнее см. в статье «Как определяются сигнатуры методов» .
/** * Lists 10 course names and IDs. */functionlistCourses(){/** * @see https://developers.google.com/classroom/reference/rest/v1/courses/list */constoptionalArgs={pageSize:10// Use other query parameters here if needed.};try{constresponse=Classroom.Courses.list(optionalArgs);constcourses=response.courses;if(!courses||courses.length===0){console.log('No courses found.');return;}// Print the course names and IDs of the available courses.for(constcourseincourses){console.log('%s (%s)',courses[course].name,courses[course].id);}}catch(err){// TODO (developer)- Handle Courses.list() exception from Classroom APIconsole.log('Failed with error %s',err.message);}}
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2025-07-24 UTC."],[[["The Google Classroom API within Apps Script allows admins, teachers, and students to manage courses and rosters."],["This is an advanced service requiring prior enabling and provides functionalities mirroring the public API."],["Comprehensive documentation, support resources, and sample code are available for guidance and troubleshooting."],["You can find sample code demonstrating functionalities like listing the user's accessible courses."]]],[]]