1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-13 15:29:36 +00:00

[facebook] Fix login (Fixes #3667)

This commit is contained in:
Philipp Hagemeister 2014-09-03 09:49:05 +02:00
parent 33422c056d
commit 7d4d5f25ed

View file

@ -79,7 +79,8 @@ class FacebookIE(InfoExtractor):
check_form = {
'fb_dtsg': self._search_regex(r'name="fb_dtsg" value="(.+?)"', login_results, 'fb_dtsg'),
'h': self._search_regex(r'name="h" value="(\w*?)"', login_results, 'h'),
'h': self._search_regex(
r'name="h"\s+(?:\w+="[^"]+"\s+)*?value="([^"]+)"', login_results, 'h'),
'name_action_selected': 'dont_save',
}
check_req = compat_urllib_request.Request(self._CHECKPOINT_URL, urlencode_postdata(check_form))