Export external course resources?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024
09:12 AM
I'm refreshing an existing course that uses a slew of external resources via URLs. Is there a way to pull just those external links from my course in Canvas?
The closest I've come so far is:
- export course (nets imscc file, which is just a compressed file)
- expand/decompress imscc file
- cd into expanded dir
- grep href -R * > links (writes all lines with hrefs to the file links)
- feed links to this tool: https://www.convertcsv.com/url-extractor.htm
Solved! Go to Solution.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2024
08:36 AM
Hi @ProfEsser,
I think what you're doing now is probably one of the most efficient ways to accomplish the task. There could be other methods via the Canvas API or Canvas Data 2, but I don't they'd be any easier or quicker, and honestly, they could even be more complicated overall.
-Chris