mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-18 08:16:10 +00:00
[Facebook] Check for redirection to URL with login
, or not a permalink, or not including the ID
This commit is contained in:
parent
ecd14c832d
commit
c555e5e478
1 changed files with 8 additions and 1 deletions
|
@ -410,8 +410,15 @@ class FacebookIE(InfoExtractor):
|
|||
self._login()
|
||||
|
||||
def _extract_from_url(self, url, video_id):
|
||||
webpage = self._download_webpage(
|
||||
webpage, urlh = self._download_webpage_handle(
|
||||
url.replace('://m.facebook.com/', '://www.facebook.com/'), video_id)
|
||||
login_or_id_check = re.search(r'(?P<login>\blogin\b)|/permalink/|[/=?]' + video_id, urlh.geturl())
|
||||
if login_or_id_check and login_or_id_check.group('login'):
|
||||
self.raise_login_required()
|
||||
elif not login_or_id_check:
|
||||
raise ExtractorError(
|
||||
'Facebook redirected to a generic page (%s): the video may be unavailable or you may need to log in.' % urlh.geturl(),
|
||||
expected=True)
|
||||
|
||||
def extract_metadata(webpage):
|
||||
video_title = self._html_search_regex(
|
||||
|
|
Loading…
Reference in a new issue