parent
97d60ad8cd
commit
4815d35c19
1 changed files with 5 additions and 1 deletions
|
@ -10,6 +10,8 @@ from ..compat import compat_HTTPError
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
|
jwt_decode_hs256,
|
||||||
|
try_call,
|
||||||
try_get,
|
try_get,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -77,8 +79,10 @@ class SonyLIVIE(InfoExtractor):
|
||||||
self._HEADERS['device_id'] = self._get_device_id()
|
self._HEADERS['device_id'] = self._get_device_id()
|
||||||
self._HEADERS['content-type'] = 'application/json'
|
self._HEADERS['content-type'] = 'application/json'
|
||||||
|
|
||||||
if username.lower() == 'token' and len(password) > 1198:
|
if username.lower() == 'token' and try_call(lambda: jwt_decode_hs256(password)):
|
||||||
self._HEADERS['authorization'] = password
|
self._HEADERS['authorization'] = password
|
||||||
|
self.report_login()
|
||||||
|
return
|
||||||
elif len(username) != 10 or not username.isdigit():
|
elif len(username) != 10 or not username.isdigit():
|
||||||
raise ExtractorError(f'Invalid username/password; {self._LOGIN_HINT}')
|
raise ExtractorError(f'Invalid username/password; {self._LOGIN_HINT}')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue