mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[toutv] detect invalid login error
This commit is contained in:
parent
829685b88a
commit
7b6e760870
|
@ -4,7 +4,9 @@ from __future__ import unicode_literals
|
||||||
import json
|
import json
|
||||||
|
|
||||||
from .radiocanada import RadioCanadaIE
|
from .radiocanada import RadioCanadaIE
|
||||||
|
from ..compat import compat_HTTPError
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
|
ExtractorError,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
merge_dicts,
|
merge_dicts,
|
||||||
)
|
)
|
||||||
|
@ -42,6 +44,7 @@ class TouTvIE(RadioCanadaIE):
|
||||||
email, password = self._get_login_info()
|
email, password = self._get_login_info()
|
||||||
if email is None:
|
if email is None:
|
||||||
return
|
return
|
||||||
|
try:
|
||||||
self._access_token = self._download_json(
|
self._access_token = self._download_json(
|
||||||
'https://services.radio-canada.ca/toutv/profiling/accounts/login',
|
'https://services.radio-canada.ca/toutv/profiling/accounts/login',
|
||||||
None, 'Logging in', data=json.dumps({
|
None, 'Logging in', data=json.dumps({
|
||||||
|
@ -54,6 +57,11 @@ class TouTvIE(RadioCanadaIE):
|
||||||
'Authorization': 'client-key ' + self._CLIENT_KEY,
|
'Authorization': 'client-key ' + self._CLIENT_KEY,
|
||||||
'Content-Type': 'application/json;charset=utf-8',
|
'Content-Type': 'application/json;charset=utf-8',
|
||||||
})['access_token']
|
})['access_token']
|
||||||
|
except ExtractorError as e:
|
||||||
|
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 401:
|
||||||
|
error = self._parse_json(e.cause.read().decode(), None)['Message']
|
||||||
|
raise ExtractorError(error, expected=True)
|
||||||
|
raise
|
||||||
self._claims = self._call_api('validation/v2/getClaims')['claims']
|
self._claims = self._call_api('validation/v2/getClaims')['claims']
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
|
Loading…
Reference in a new issue