-
Notifications
You must be signed in to change notification settings - Fork 120
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
Issue with login #46
Comments
pygooglevoice can be spotty about identifying particular login failures. However, since it's still working for me I suspect that the particular problem is related to your Google account. I'd suggest a couple of things. First, go into your Google settings and choose the less-secure option for allowing apps to login. Second, do your early testing with the "gvoice" application that comes with pygooglevoice; that will eliminate the possibility that it's bugs in your own application. Once you can use gvoice to login and do something simple, you'll know you have the Google settings right and can return to your own app. |
I have a similar login problem: [andrea@darius ~]$ gvoice I've disabled two-factor authorization from my google account. I've enabled access for less secure apps. I've connected to GV on my server with a commandline browser and logged in successfully: [andrea@darius ~]$ lynx https://voice.google.com I'm not sure why gvoice is not logging me in. |
@LukeCLindgren @andreawhitlock |
@chris001 this worked for me. Thanka! |
It did not work: [andrea@darius ~]$ lynx https://accounts.google.com/DisplayUnlockCaptcha And since I can lynx to https://voice.google.com/messages from the command line on the same server and login fine, I don't think it's a setting with my google account. |
I initially installed the package from the Fedora dnf command. Then I downloaded the master zip file from here when I had errors and installed the local package with easy_install. It must not have overlaid everything or things got half-baked. I used pip uninstall to uninstall pygooglevoice and reinstalled from the master zip downloaded from here (using pip install). It's working now that I have a clean install. |
same issue here, ever since I added 2 factor authentication. I use an app password to send emails from the same server, but gvoice is failing. |
@rtaft |
Pulling from the newest version of the repository (#41), I'm the code is raising a login error.
This is what I have written:
`from googlevoice import Voice
from googlevoice.util import input
import BeautifulSoup
username, password = "[email protected]", "xxxxxx"
......
def google_login(username, password):
voice = Voice()
client = voice.login(username, password)
print client
return client
`
However, I'm getting this error:
Traceback (most recent call last): File "E:/Jason Core/Boot.py", line 75, in <module> control() File "E:/Jason Core/Boot.py", line 70, in control logins = System_Logins.read_logins(basedir) File "E:\Jason Core\System_Logins.py", line 33, in read_logins gv = google_login(login_list[type_list.index(item)], password_list[type_list.index(item)]) File "E:\Jason Core\System_Logins.py", line 44, in google_login client = voice.login(username, password) File "C:\Python27\lib\site-packages\googlevoice\voice.py", line 94, in login raise LoginError
The text was updated successfully, but these errors were encountered: