Could not log in with provided credentials

Asked by inverser

I am positively, absolutely using the correct password, yet I continue to receive this error. I've even tried leaving off the @gmail.com.

Perhaps this package is dependent on Evolution? Because I don't have Evolution currently set up.

Question information

Language:
English Edit question
Status:
Solved
For:
Google Voice Notifier Edit question
Assignee:
No assignee Edit question
Solved by:
inverser
Solved:
Last query:
Last reply:
Revision history for this message
Dima Spivak (dimaspivak) said :
#1

I uninstall Evolution immediately after installing a new version of Ubuntu, and the program works fine for me. I suggest typing in your password into a text editor and copying and pasting it into the Gmail website to make sure it's correct. If it is, copy and paste into the notifier and report back if you still have problems logging in.

Revision history for this message
inverser (resrevni) said :
#2

Hi Dima! Thank you for your reply. I am positive I am using the correct password because I can log into my Google Accounts, Google Voice, Google Docs and Gmail directly using the password.

I tried to run with sudo and came back with this:

sudo gvoice-notifier -h
Traceback (most recent call last):
  File "/usr/bin/gvoice-notifier", line 318, in <module>
    gkey = Keyring("Google Voice Notifier", "login information", "A simple Google Voice Notifier")
  File "/usr/bin/gvoice-notifier", line 193, in __init__
    self.keyring = gnomekeyring.get_default_keyring_sync()
gnomekeyring.IOError

How do I resolve this, please? I would love to use this application!

Regards.

Revision history for this message
inverser (resrevni) said :
#3

Oh WTF? I just did as you requested and copy pasted my password and now I have successfully logged in. What causes this issue? Very strange indeed.

Revision history for this message
inverser (resrevni) said :
#4

Okay, please retract my last statement. I am still unable to login. However, Google Voice now appears in the dropdown menu.

Revision history for this message
inverser (resrevni) said :
#5

Hello I am using the correct login credentials but continue to receive this error. Can anyone please help me with this issue?

Revision history for this message
inverser (resrevni) said :
#6

I still need an answer error

Revision history for this message
inverser (resrevni) said :
#7

Relevant link showing that others are having problem logging in:

https://github.com/aaronpk/Google-Voice-PHP-API/issues/2

Revision history for this message
inverser (resrevni) said :
#8

I resolved this issue by changing log in and authentication URLs on lines 229+230 from:

229 self.loing_page_url = 'https://www.google.com/accounts/ServiceLogin'
230 self.authenticate_url = 'https://www.google.com/accounts/ServiceLoginAuth'

to

229 self.loing_page_url = 'https://accounts.google.com/ServiceLogin?passive=true&service=grandcentral'
230 self.authenticate_url = 'https://accounts.google.com/ServiceLoginAuth?service=grandcentral'

and now I am able to successfully log in.

Perhaps someone can create a patch that will allow gvoice-notifier to kick to the second pair of log in URLs if the first pair fails. It seems the Google suffers from multiple personality disorder. (:

Revision history for this message
Daniel Florez (dmfz91) said :
#9

Hello, I need help on actually changing the URLs, I have no idea how to do so. What do I need to do?

Revision history for this message
inverser (resrevni) said :
#10

Hi Daniel. Edit the source code lines 229 and 230 as I have instructed in post #3 and then install as you normally would.

python setup.py install

Revision history for this message
inverser (resrevni) said :
#11

#8