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
Traceback (most recent call last):
File "sms.py", line 10, in <module>
voice.send_sms("13018511936", text)
File "/usr/local/lib/python2.7/dist-packages/googlevoice/voice.py", line 190, in send_sms
self.__validate_special_page('sms', {'phoneNumber': phoneNumber, 'text': text})
File "/usr/local/lib/python2.7/dist-packages/googlevoice/voice.py", line 287, in __validate_special_page
load_and_validate(self.__do_special_page(page, data))
File "/usr/local/lib/python2.7/dist-packages/googlevoice/util.py", line 65, in load_and_validate
validate_response(loads(response.read()))
File "/usr/local/lib/python2.7/dist-packages/googlevoice/util.py", line 59, in validate_response
raise ValidationError('There was a problem with GV: %s' % response)
googlevoice.util.ValidationError: There was a problem with GV: {u'data': {u'code': 58}, u'ok': False}
So I was using pygooglevoice to monitor my server. All the sudden I get that error when I try to send a SMS.
import sys
from googlevoice import Voice
from googlevoice.util import input
voice = Voice()
voice.login(email='-snip-', passwd='-snip-')
text = sys.argv[1];
voice.send_sms("-snip-", text)
The text was updated successfully, but these errors were encountered:
So I was using pygooglevoice to monitor my server. All the sudden I get that error when I try to send a SMS.
The text was updated successfully, but these errors were encountered: