[ie/vimeo] Fix API retries (fix c1c9bb4adb) (#11351)

Authored by: bashonly
This commit is contained in:
bashonly 2024-10-25 18:37:18 +00:00 committed by GitHub
parent c29f5a7fae
commit 57212a5f97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -869,11 +869,12 @@ def _extract_from_api(self, video_id, unlisted_hash=None):
for retry in (False, True):
try:
video = self._call_videos_api(video_id, viewer['jwt'], unlisted_hash)
break
except ExtractorError as e:
if (not retry and isinstance(e.cause, HTTPError) and e.cause.status == 400
and 'password' in traverse_obj(
e.cause.response.read(),
({bytes.decode}, {json.loads}, 'invalid_parameters', ..., 'field'),
self._webpage_read_content(e.cause.response, e.cause.response.url, video_id, fatal=False),
({json.loads}, 'invalid_parameters', ..., 'field'),
)):
self._verify_video_password(
video_id, self._get_video_password(), viewer['xsrft'])