mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[vk] Capture error message
This commit is contained in:
parent
9ac09ed4de
commit
ee48b6a88f
@ -205,6 +205,12 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
info_page = self._download_webpage(info_url, video_id)
|
info_page = self._download_webpage(info_url, video_id)
|
||||||
|
|
||||||
|
error_message = self._html_search_regex(
|
||||||
|
r'(?s)<!><div[^>]+class="video_layer_message"[^>]*>(.+?)</div>',
|
||||||
|
info_page, 'error message', default=None)
|
||||||
|
if error_message:
|
||||||
|
raise ExtractorError(error_message, expected=True)
|
||||||
|
|
||||||
if re.search(r'<!>/login\.php\?.*\bact=security_check', info_page):
|
if re.search(r'<!>/login\.php\?.*\bact=security_check', info_page):
|
||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
'You are trying to log in from an unusual location. You should confirm ownership at vk.com to log in with this IP.',
|
'You are trying to log in from an unusual location. You should confirm ownership at vk.com to log in with this IP.',
|
||||||
|
Loading…
Reference in New Issue
Block a user