浏览代码

[globo] set GLBID cookie manually(closes #17346)

Remita Amine 6 年之前
父节点
当前提交
65615be368
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      youtube_dl/extractor/globo.py

+ 4 - 2
youtube_dl/extractor/globo.py

@@ -72,7 +72,7 @@ class GloboIE(InfoExtractor):
             return
 
         try:
-            self._download_json(
+            glb_id = (self._download_json(
                 'https://login.globo.com/api/authentication', None, data=json.dumps({
                     'payload': {
                         'email': email,
@@ -81,7 +81,9 @@ class GloboIE(InfoExtractor):
                     },
                 }).encode(), headers={
                     'Content-Type': 'application/json; charset=utf-8',
-                })
+                }) or {}).get('glbId')
+            if glb_id:
+                self._set_cookie('.globo.com', 'GLBID', glb_id)
         except ExtractorError as e:
             if isinstance(e.cause, compat_HTTPError) and e.cause.code == 401:
                 resp = self._parse_json(e.cause.read(), None)