[extractor/rtbf] Fix jwt extraction (#4738)

Closes #4683
Authored by: elyse0
pull/4754/head
Elyse 2 years ago committed by GitHub
parent 992dc6b486
commit b85703d11a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,6 +11,7 @@ from ..utils import (
int_or_none,
strip_or_none,
traverse_obj,
try_call,
unified_timestamp,
)
@ -255,7 +256,7 @@ class RTBFIE(RedBeeBaseIE):
if not login_token:
self.raise_login_required()
session_jwt = self._download_json(
session_jwt = try_call(lambda: self._get_cookies(url)['rtbf_jwt'].value) or self._download_json(
'https://login.rtbf.be/accounts.getJWT', media_id, query={
'login_token': login_token.value,
'APIKey': self._GIGYA_API_KEY,

Loading…
Cancel
Save