Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
222 views
in Technique[技术] by (71.8m points)

course.getCourseMaterialSets() is returning empty for Google classroom Course Material

To Access Course Material In Google Classroom API , I am using the following java library function. It was working last week but not returning any data now ? Any help would be greatly appreciated.

                for (Course course : courses) { 
                    System.out.printf("%s 
", course.getName());
                    List<CourseMaterialSet> set = course.getCourseMaterialSets();   
                    if (set != null) {                  
                        for (CourseMaterialSet s : set) {
                            System.out.println(s.toPrettyString());
                        }
                    } else {
                        System.out.println("Course material not found");
                    }
                }
question from:https://stackoverflow.com/questions/65952602/course-getcoursematerialsets-is-returning-empty-for-google-classroom-course-ma

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...