Dịch vụ Lớp học cho phép bạn sử dụng API Google Lớp học trong Apps Script. API này cho phép quản trị viên, giáo viên và học viên xem cũng như quản lý các khoá học và danh sách lớp học của họ.
Tài liệu tham khảo
Để biết thông tin chi tiết về dịch vụ này, hãy xem tài liệu tham khảo về API Google Lớp học.
Giống như tất cả các dịch vụ nâng cao trong Apps Script, dịch vụ Lớp học sử dụng cùng các đối tượng, phương thức và tham số như API công khai. Để biết thêm thông tin, hãy xem phần Cách xác định chữ ký phương thức.
/** * 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('Nocoursesfound.');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('Failedwitherror%s',err.message);}}
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2024-12-21 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."]]],[]]