diff options
author | Remita Amine <remitamine@gmail.com> | 2018-11-06 21:22:00 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2018-11-06 21:22:27 +0100 |
commit | 0df514f07e23ce70cccec045b4e71bdec151fcc7 (patch) | |
tree | b0385b23742a0d9d62a8fc00a635524d714321d7 /youtube_dl | |
parent | 432cd4841023091811db46cd82c188698a386841 (diff) |
[facebook] fix tahoe request(closes #17171)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/facebook.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py index 97cfe0fc3..74954049d 100644 --- a/youtube_dl/extractor/facebook.py +++ b/youtube_dl/extractor/facebook.py @@ -57,7 +57,7 @@ class FacebookIE(InfoExtractor): _CHROME_USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36' _VIDEO_PAGE_TEMPLATE = 'https://www.facebook.com/video/video.php?v=%s' - _VIDEO_PAGE_TAHOE_TEMPLATE = 'https://www.facebook.com/video/tahoe/async/%s/?chain=true&isvideo=true' + _VIDEO_PAGE_TAHOE_TEMPLATE = 'https://www.facebook.com/video/tahoe/async/%s/?chain=true&isvideo=true&payloadtype=primary' _TESTS = [{ 'url': 'https://www.facebook.com/video.php?v=637842556329505&fref=nf', |