fix and cheap workaround for unix 404 error.

This commit is contained in:
Unknown 2020-08-19 03:01:47 +02:00
parent ea4b8b6747
commit 0bfc3b7e7b
1 changed files with 4 additions and 2 deletions

View File

@ -56,14 +56,16 @@ class VikiBaseIE(InfoExtractor):
def _call_api(self, path, video_id, note, timestamp=None, post_data=None):
resp = self._download_json(
self._prepare_call(path, timestamp, post_data), video_id, note)
self._prepare_call(path, timestamp, post_data), video_id, note, headers={'x-viki-app-ver': '2.2.5.1428709186'}, expected_status=[200,400,404])
print(resp)
error = resp.get('error')
if error:
if error == 'invalid timestamp':
resp = self._download_json(
self._prepare_call(path, int(resp['current_timestamp']), post_data),
video_id, '%s (retry)' % note)
video_id, '%s (retry)' % note, headers={'x-viki-app-ver': '2.2.5.1428709186'}, expected_status=[200,400,404])
error = resp.get('error')
if error:
self._raise_error(resp['error'])