1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-04 23:21:17 +02:00

[nfb] Add encode POST data

This commit is contained in:
Sergey M. 2014-02-07 02:13:04 +07:00
parent d67cc9fa7c
commit 3587159614

View File

@ -43,7 +43,7 @@ def _real_extract(self, url):
page, 'director name', fatal=False)
request = compat_urllib_request.Request('https://www.nfb.ca/film/%s/player_config' % video_id,
compat_urllib_parse.urlencode({'getConfig': 'true'}))
compat_urllib_parse.urlencode({'getConfig': 'true'}).encode('ascii'))
request.add_header('Content-Type', 'application/x-www-form-urlencoded')
request.add_header('X-NFB-Referer', 'http://www.nfb.ca/medias/flash/NFBVideoPlayer.swf')