mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-08 18:30:37 +00:00
[ie/vimeo] Fix API retries (fix c1c9bb4adb
) (#11351)
Authored by: bashonly
This commit is contained in:
parent
c29f5a7fae
commit
57212a5f97
@ -869,11 +869,12 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
|||||||
for retry in (False, True):
|
for retry in (False, True):
|
||||||
try:
|
try:
|
||||||
video = self._call_videos_api(video_id, viewer['jwt'], unlisted_hash)
|
video = self._call_videos_api(video_id, viewer['jwt'], unlisted_hash)
|
||||||
|
break
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if (not retry and isinstance(e.cause, HTTPError) and e.cause.status == 400
|
if (not retry and isinstance(e.cause, HTTPError) and e.cause.status == 400
|
||||||
and 'password' in traverse_obj(
|
and 'password' in traverse_obj(
|
||||||
e.cause.response.read(),
|
self._webpage_read_content(e.cause.response, e.cause.response.url, video_id, fatal=False),
|
||||||
({bytes.decode}, {json.loads}, 'invalid_parameters', ..., 'field'),
|
({json.loads}, 'invalid_parameters', ..., 'field'),
|
||||||
)):
|
)):
|
||||||
self._verify_video_password(
|
self._verify_video_password(
|
||||||
video_id, self._get_video_password(), viewer['xsrft'])
|
video_id, self._get_video_password(), viewer['xsrft'])
|
||||||
|
Loading…
Reference in New Issue
Block a user