diff --git a/Contents/Code/__init__.py b/Contents/Code/__init__.py index 6051f26..99dd84f 100644 --- a/Contents/Code/__init__.py +++ b/Contents/Code/__init__.py @@ -6,11 +6,11 @@ ART = 'art-default.jpg' ICON = 'icon-default.jpg' -PBSKIDS_URL = 'http://www.pbskids.org/video/' -PBSKIDS_SHOWS = 'http://pbskids.org/pbsk/video/api/getShows/?return=images' -VIDEO_LIST = 'http://pbskids.org/pbsk/video/api/getVideos/?startindex=%d&endindex=%d&program=%s&status=available&type=%s&return=airdate,expirationdate,rating' -VIDEO_URL = 'http://pbskids.org/pbsk/video/api/getVideos/?guid=%s' -SHOW_ICON_URL = 'http://www-tc.pbskids.org/shell/images/content/show-bubbles/square/%s.png' +PBSKIDS_URL = 'https://www.pbskids.org/video/' +PBSKIDS_SHOWS = 'https://pbskids.org/pbsk/video/api/getShows/?return=images' +VIDEO_LIST = 'https://pbskids.org/pbsk/video/api/getVideos/?startindex=%d&endindex=%d&program=%s&status=available&type=%s&return=airdate,expirationdate,rating' +VIDEO_URL = 'https://pbskids.org/pbsk/video/api/getVideos/?guid=%s' +SHOW_ICON_URL = 'https://www-tc.pbskids.org/shell/images/content/show-bubbles/square/%s.png' OFFSET = 20 #################################################################################################### diff --git a/Contents/Services/ServiceInfo.plist b/Contents/Services/ServiceInfo.plist index e9148d3..c0bcf25 100644 --- a/Contents/Services/ServiceInfo.plist +++ b/Contents/Services/ServiceInfo.plist @@ -8,7 +8,7 @@ URLPatterns - http://pbskids\.org/.+/\?guid=[a-fA-F\d]{8}-([a-fA-F\d]{4}-){3}[a-fA-F\d]{12} + https?://pbskids\.org/.+/\?guid=[a-fA-F\d]{8}-([a-fA-F\d]{4}-){3}[a-fA-F\d]{12} diff --git a/Contents/Services/URL/PBS Kids/ServiceCode.pys b/Contents/Services/URL/PBS Kids/ServiceCode.pys index 52649cc..9e381ff 100644 --- a/Contents/Services/URL/PBS Kids/ServiceCode.pys +++ b/Contents/Services/URL/PBS Kids/ServiceCode.pys @@ -1,7 +1,7 @@ import urllib2 import ssl -JSON_URL = 'http://pbskids.org/pbsk/video/api/getVideos/?guid=' +JSON_URL = 'https://pbskids.org/pbsk/video/api/getVideos/?guid=' #################################################################################################### def MetadataObjectForURL(url):