Page:
Play/hämta föreläsningar
Clone
2
Play/hämta föreläsningar
erth9960 edited this page 2025-09-10 12:05:40 +02:00
Hämta föreläsningar från Play
Se även Generella krav för samtliga APIer.
Hämta senaste föreläsningar
> GET /v1/lectures/recent?course=INPRG&course=MDI2&course=DAI1
> Accept: application/json
> Accept-Language: sv
> Authorization: Bearer <oauth 2 token>
< Content-Type: application/json
< Content-Language: sv
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"title": "Introduktion till programmering",
"description": "En grundläggande kurs i programmering med Python.",
"duration": "PT2H04M",
"created_at": "2024-06-01T10:00:00Z",
"thumbnail_url": "https://example.com/thumbnails/intro-to-programming.png",
"course": {
"name": "Introduktion till programmering",
"short_name": "INPRG",
"semester": "VT2022"
},
},
...
]
Hämta föreläsningar på en kurs
> GET /v1/lectures?course=INPRG&semester=HT2001
> Accept: application/json
> Accept-Language: en
> Authorization: Bearer <oauth 2 token>
< 200 OK
< Content-Type: application/json
< Content-Language: en
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"title": "Introduction to Programming",
"description": "A basic course in programming with Python.",
"duration": "PT2H04M",
"created_at": "2024-06-01T10:00:00Z",
"thumbnail_url": "https://example.com/thumbnails/intro-to-programming.png",
"course": {
"name": "Introduction to Programming",
"short_name": "INPRG",
"semester": "VT2022"
},
},
...
]