youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 24b8924b469bd1b75bcad82eec3823ad79472610
parent 86a3c67112355e1776d0486eb7681986378781eb
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 21 Apr 2014 15:56:09 +0200

[facebook] Correct login (Fixes #2743)

Diffstat:
Myoutube_dl/extractor/facebook.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py @@ -76,9 +76,8 @@ class FacebookIE(InfoExtractor): check_form = { 'fb_dtsg': self._search_regex(r'name="fb_dtsg" value="(.+?)"', login_results, 'fb_dtsg'), - 'nh': self._search_regex(r'name="nh" value="(\w*?)"', login_results, 'nh'), + 'h': self._search_regex(r'name="h" value="(\w*?)"', login_results, 'h'), 'name_action_selected': 'dont_save', - 'submit[Continue]': self._search_regex(r'<button[^>]+value="(.*?)"[^>]+name="submit\[Continue\]"', login_results, 'continue'), } check_req = compat_urllib_request.Request(self._CHECKPOINT_URL, urlencode_postdata(check_form)) check_req.add_header('Content-Type', 'application/x-www-form-urlencoded')