youtube-dl

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

commit cc7f6c720e2607539c0d3bdac893424ebb839a6a
parent 3a0ceb32e2150e8bfaf6fc2402c995a0b138d4ac
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 10 Mar 2018 22:35:47 +0700

[njpwworld] Fix authentication (closes #15815)

Diffstat:
Myoutube_dl/extractor/njpwworld.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/njpwworld.py b/youtube_dl/extractor/njpwworld.py @@ -43,7 +43,8 @@ class NJPWWorldIE(InfoExtractor): webpage, urlh = self._download_webpage_handle( 'https://njpwworld.com/auth/login', None, note='Logging in', errnote='Unable to login', - data=urlencode_postdata({'login_id': username, 'pw': password})) + data=urlencode_postdata({'login_id': username, 'pw': password}), + headers={'Referer': 'https://njpwworld.com/auth'}) # /auth/login will return 302 for successful logins if urlh.geturl() == 'https://njpwworld.com/auth/login': self.report_warning('unable to login')