]> git.sthu.org Git - oe1archive.git/commitdiff
Switch to https:// URLs everywhere
authorStefan Huber <shuber@sthu.org>
Fri, 2 Jan 2026 20:24:18 +0000 (21:24 +0100)
committerStefan Huber <shuber@sthu.org>
Fri, 2 Jan 2026 20:38:35 +0000 (21:38 +0100)
README.markdown
oe1archive

index 9e4f31f4104b612cb108fc76a7ad6a5f675c275b..4d76d779424d4232065d99d13ba4df1c35b6f443 100644 (file)
@@ -74,7 +74,7 @@ The OE1 API provides a rolling weekly window of current broadcasts. Streams rema
 
 ## Technical Details
 
-- **API**: http://audioapi.orf.at/oe1/json/2.0/
+- **API**: https://audioapi.orf.at/oe1/json/2.0/
 - **Stream Source**: https://loopstream01.apa.at/?channel=oe1&shoutcast=0&id=...
 - **Archive Window**: ~30 days (loopstream availability)
 
index 141c68099e879114049ba19ff5e757830a1ab56c..bf89f4fd7578104f4d3e030f6c487a12da806806 100755 (executable)
@@ -66,7 +66,7 @@ from datetime import timedelta
 
 
 # Add audioapi as constant:
-AUDIOAPI_BASE_URL = "http://audioapi.orf.at/oe1/json/2.0/"
+AUDIOAPI_BASE_URL = "https://audioapi.orf.at/oe1/json/2.0/"
 BROADCAST_API_URL = 'https://audioapi.orf.at/oe1/api/json/current/broadcast/'
 
 
@@ -219,7 +219,7 @@ class Archive:
         """Get the player URL for a broadcast."""
         date = self.json[day]['day']
         pk = self.json[day]['broadcasts'][broadcast]['programKey']
-        url = "http://oe1.orf.at/player/%d/%s"
+        url = "https://oe1.orf.at/player/%d/%s"
         return url % (date, pk)
 
     def get_broadcast_title(self, day, broadcast):