1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-30 13:11:08 +02:00

[adobepass] Detect and output error on authz token extraction (#12472)

This commit is contained in:
Sergey M․ 2017-03-18 06:19:11 +07:00
parent 5f0daab1ca
commit febfe1e262
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -1458,6 +1458,8 @@ def raise_mvpd_required():
self._downloader.cache.store(self._MVPD_CACHE, requestor_id, {})
count += 1
continue
if '<error' in authorize:
raise ExtractorError(xml_text(authorize, 'details'), expected=True)
authz_token = unescapeHTML(xml_text(authorize, 'authzToken'))
requestor_info[guid] = authz_token
self._downloader.cache.store(self._MVPD_CACHE, requestor_id, requestor_info)