Hi,
as discussed, here some info on how the education API works.
this is basically the same as on the slides that Jarek sent you,
(1)
,----.
| |
< > |
+----------+ (2) +--------+ (3) +---------+
| Category |<>-----| Course |<>-----| Lecture |
+----------+ +--------+ +---------+
< > |
| (4) |
`-----------------------------------'
Only read operations are supported.
== Fetching EDU taxonomy ==
-> Regular XML (Atom) categories response, with parent category relationship.
== Lecture and course information ==
Courses by category:
Lectures by category:
Lectures by course:
On the retrieved entries, you can find tags like this for lecturer and material information. A course that has that information is "Structure and Interpretation of Computer Programs", which is popular in the computer science category.
<media:credit scheme=”urn:youtube”
role=”lecturer”>Prof. Dr. Example</media:credit>
<yt:material type="homework"
name="Exercise 1"
description="Your dog can't eat the PDF homework!"/>
--Günther