-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Captcha sometimes required on IMDB login causing the script to fail #2
Comments
Hello, I had that issue and thought it was a Captcha issue. Turns out the script asks for my username, when it actually should ask for my email address. Replacing my username for my email address in credentials.txt fixed the issue for me. Just wanted to point that out. Thank you for the work! |
Thanks a lot, the script should be updated to say just that. Was stuck for about 1 hour after I decided to check github issues |
Thank you very much for pointing this out. You are correct the |
Similar issue: |
Problem
IMDB may require a captcha on login. If you see "Not signed in" appear in the script then the script will fail. A captcha check on the IMDB login page is likely the cause.
Workaround:
To resolve this, follow these steps:
Manual Solution:
IMDBTraktSyncer.py
file in a text editor (located in the main script directory).options.add_argument("--headless=new")
.#
at the beginning of the line:# options.add_argument("--headless=new")
#
and run the script as usual.Possible Development:
Planned for future update.
The text was updated successfully, but these errors were encountered: