[facebook] Detect login required error message
This commit is contained in:
parent
19b4900b7b
commit
d2d2495e16
1 changed files with 2 additions and 0 deletions
|
@ -257,6 +257,8 @@ class FacebookIE(InfoExtractor):
|
|||
raise ExtractorError(
|
||||
'The video is not available, Facebook said: "%s"' % m_msg.group(1),
|
||||
expected=True)
|
||||
elif '>You must log in to continue' in webpage:
|
||||
self.raise_login_required()
|
||||
else:
|
||||
raise ExtractorError('Cannot parse data')
|
||||
|
||||
|
|
Loading…
Reference in a new issue