humblebundle icon indicating copy to clipboard operation
humblebundle copied to clipboard

Login Failing

Open Enverex opened this issue 7 years ago • 6 comments

Not sure if they've changed anything since the last update here in Jan, but despite correct credentials, the login process is failing. I can see the correct username and password being sent via post (with the exception of the @ in the email being translated to %40 which I assume is part of the form encoding) but I still get the "Either username/password are not correct, or a ReCaptcha..." message.

Adding --auth with the _simpleauth_sess value from the browser doesn't help at all, same error.

The debug output shows a 302 on /home/keys, then a 200 on /login?goto=%2Fhome%2Fkeys then a 401 on /processlogin. _simpleauth_sess in that post matches the one I'm seeing in the browser.

Enverex avatar Apr 12 '17 14:04 Enverex

problem still persists, same here.

shakeyourbunny avatar May 20 '17 13:05 shakeyourbunny

Same issue here. passing -A didnt help.

KingPin avatar Jun 30 '17 22:06 KingPin

In my case there were actually two problems:

  • It is important to copy all of the _simpleauth_sess cookie including the " ". In my case this looks like this, notice that the AUTH is in additional ' ':
./humblebundle.py --auth='"alotfoacharctersandnumbers"'
  • After providing proper AUTH token Humble Bundle generated a verification code and sent it to my email. Using --code resulted in an error. I was able to write a fix. It is in PR #35.

graag avatar Oct 12 '17 19:10 graag

@graag , as I merged PR #35, does it mean this issue is also fixed? can @KingPin and other confirm that login is now working given the new instructions and the _le_csrf_token fix?

MestreLion avatar Oct 15 '17 10:10 MestreLion

@MestreLion I guess that the main issue here was with the _simpleauth_sess cookie. Maybe a note in the documentation stating that all characters have to be included?

graag avatar Oct 19 '17 20:10 graag

Thanks for pointing out the thing about the double quotes, @graag

monreal avatar Jan 14 '18 17:01 monreal