mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 11:42:43 +01:00
[extractor/rtbf] Fix jwt extraction (#4738)
Closes #4683 Authored by: elyse0
This commit is contained in:
parent
992dc6b486
commit
b85703d11a
@ -11,6 +11,7 @@
|
|||||||
int_or_none,
|
int_or_none,
|
||||||
strip_or_none,
|
strip_or_none,
|
||||||
traverse_obj,
|
traverse_obj,
|
||||||
|
try_call,
|
||||||
unified_timestamp,
|
unified_timestamp,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -255,7 +256,7 @@ def _get_formats_and_subtitles(self, url, media_id):
|
|||||||
if not login_token:
|
if not login_token:
|
||||||
self.raise_login_required()
|
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={
|
'https://login.rtbf.be/accounts.getJWT', media_id, query={
|
||||||
'login_token': login_token.value,
|
'login_token': login_token.value,
|
||||||
'APIKey': self._GIGYA_API_KEY,
|
'APIKey': self._GIGYA_API_KEY,
|
||||||
|
Loading…
Reference in New Issue
Block a user