소스 검색

[instagram] Only recognize https urls (fixes #5739)

http urls redirect to them.
Jaime Marquínez Ferrándiz 10 년 전
부모
커밋
fc6e75dd57
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      youtube_dl/extractor/instagram.py

+ 4 - 4
youtube_dl/extractor/instagram.py

@@ -7,9 +7,9 @@ from ..utils import int_or_none
 
 
 
 
 class InstagramIE(InfoExtractor):
 class InstagramIE(InfoExtractor):
-    _VALID_URL = r'https?://instagram\.com/p/(?P<id>[\da-zA-Z]+)'
+    _VALID_URL = r'https://instagram\.com/p/(?P<id>[\da-zA-Z]+)'
     _TEST = {
     _TEST = {
-        'url': 'http://instagram.com/p/aye83DjauH/?foo=bar#abc',
+        'url': 'https://instagram.com/p/aye83DjauH/?foo=bar#abc',
         'md5': '0d2da106a9d2631273e192b372806516',
         'md5': '0d2da106a9d2631273e192b372806516',
         'info_dict': {
         'info_dict': {
             'id': 'aye83DjauH',
             'id': 'aye83DjauH',
@@ -41,11 +41,11 @@ class InstagramIE(InfoExtractor):
 
 
 
 
 class InstagramUserIE(InfoExtractor):
 class InstagramUserIE(InfoExtractor):
-    _VALID_URL = r'http://instagram\.com/(?P<username>[^/]{2,})/?(?:$|[?#])'
+    _VALID_URL = r'https://instagram\.com/(?P<username>[^/]{2,})/?(?:$|[?#])'
     IE_DESC = 'Instagram user profile'
     IE_DESC = 'Instagram user profile'
     IE_NAME = 'instagram:user'
     IE_NAME = 'instagram:user'
     _TEST = {
     _TEST = {
-        'url': 'http://instagram.com/porsche',
+        'url': 'https://instagram.com/porsche',
         'info_dict': {
         'info_dict': {
             'id': 'porsche',
             'id': 'porsche',
             'title': 'porsche',
             'title': 'porsche',