You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry for the drive by but the description reminded me of an issue I've had with go get. When running against private repos, it will hang with a pending git auth request that is suppressed by default, unless GIT_TERMINAL_PROMPT=1 is set in the environment. Hoping maybe this might help, unless you've already tried it.
Try to make this changes at dorker.py: <line 36>
else:
#client = github3.GitHub()
client = github3.GitHub(username=gh_user, password=gh_pass, token=gh_token)
# client.login(
# username=gh_user,
# password=gh_pass,
# token=gh_token,
# two_factor_callback=two_factor,
# )
# Check if login worked
I haven't been able to successfully log in with username/password, with or without 2FA enabled.
The text was updated successfully, but these errors were encountered: