-
Notifications
You must be signed in to change notification settings - Fork 189
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
get_auth & get_auth_stdin stuck at email prompt + manual stuck at loading #450
Comments
We are using the stdlib Add this on top of your entry point (the script you pass to import logging
# use the name passed to `logging.getLogger(...)`
# 2019-01-13 09:38:27,942 DEBUG __main__: Message
logging.basicConfig(
level=logging.DEBUG,
format="%(asctime)s %(levelname)s %(name)s: %(message)s",
)
# or
# use the path and line which called the logging method.
# 2019-01-13 09:39:07,787 DEBUG /tmp/demo.py:13: Message
logging.basicConfig(
level=logging.DEBUG,
format="%(asctime)s %(levelname)s %(pathname)s:%(lineno)d: %(message)s",
)
# your code goes here |
|
Google may be prompting for something that hangups doesn't expect. If you can't get it to working, I recommend using the manual login method instead. |
@tdryer The problem is, I want to be creating an app with this library |
Then you need to expose a method for users to complete the manual auth method in the app, or ask that they do this separately (e.g. Google is making the login form increasingly difficult to automate, so automatic login is probably best not relied on. |
I'm not sure how I'm supposed to fix this tried pdb but I can't get any debug info of it since it's stuck or something.
The text was updated successfully, but these errors were encountered: