mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-11 11:43:05 +00:00
[vevo] Catch the georestriction message (#7802)
This commit is contained in:
parent
17b786ae73
commit
4bf99ade15
@ -81,6 +81,9 @@ class VevoIE(InfoExtractor):
|
|||||||
if webpage is False:
|
if webpage is False:
|
||||||
self._oauth_token = None
|
self._oauth_token = None
|
||||||
else:
|
else:
|
||||||
|
if 'THIS PAGE IS CURRENTLY UNAVAILABLE IN YOUR REGION' in webpage:
|
||||||
|
raise ExtractorError('%s said: This page is currently unavailable in your region.' % self.IE_NAME, expected=True)
|
||||||
|
|
||||||
self._oauth_token = self._search_regex(
|
self._oauth_token = self._search_regex(
|
||||||
r'access_token":\s*"([^"]+)"',
|
r'access_token":\s*"([^"]+)"',
|
||||||
webpage, 'access token', fatal=False)
|
webpage, 'access token', fatal=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user