Questions tagged [google-voice]

"Google Voice" is a telecommunications service offering enhanced: voicemail, forwarding, conferencing, etc. -- coordinated across all of your voice devices and managed on the web.

Google Voice is a telecommunications service offering:

  • Coordination across all your land and mobile phone devices.
  • Enhanced voicemail.
  • Call forwarding, conferencing, and call screening.
  • Integration with Gmail.
  • Reduced rates on some calls.
  • An optional universal number for all of your phones.

More information:

168 questions
1
vote
1 answer

Making an HttpClient request inside a BroadcastReceiver for Intent.ACTION_NEW_OUTGOING_CALL

I'm trying to write a service for my Android phone that is similar to Google Voice: it will intercept outgoing calls, replacing the originally dialed number with a number that I look up from a web request. I know that outgoing calls can be diverted…
dgmltn
  • 3,833
  • 3
  • 25
  • 27
1
vote
0 answers

Android Google Voice Search changed language automatically sometimes

I have successfully added Google Voice Search Activity using following code: Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "en-US"); try { …
Pratik Butani
  • 60,504
  • 58
  • 273
  • 437
1
vote
1 answer

pygooglevoice parse_sms beautifulsoup error

I am trying to run the pygooglevoice example script parse_sms.py to try and download the content of an sms with Python and am receiving the following error: Traceback (most recent call last): File…
1
vote
2 answers

googlevoice will not programmatically login (Python)

I am getting the following error traceback when my program tries to login to GoogleVoice (from googlevoice import Voice, util) to send SMS message. File "C:\Users\ble1usb\Dropbox\Git\ers-dataanalyzzer\MainFrame.py", line 38, in call_mainframe …
Brian Leach
  • 3,974
  • 8
  • 36
  • 75
1
vote
1 answer

How can I use maven project hosted at Google code as dependency?

I want to create a maven project to depend on maven-structured Google Code project that has been frozen before they has been published to maven central repo. Since their code is available (…
Eljah
  • 4,188
  • 4
  • 41
  • 85
1
vote
0 answers

Google Voice Curl command to mark texts as read

So right now I am using someone elses google voice API but I think the API is out of date so I am trying to fix it up. The only functioning aspect of their API is that it is able to read a message. That is what I need it to do but I also need it to…
user2574427
  • 51
  • 1
  • 1
  • 6
1
vote
1 answer

How to get the Google Voice Number in Android

I am trying to work on a project that requires google voice number. Is there a way that I can pull the google voice number without letting the user to enter it? If yes, then could anyone please explain how this can be done?? I would really…
nishantvodoo
  • 835
  • 3
  • 17
  • 32
1
vote
0 answers

How can I analyze Google Voice data dump?

I use GV for business and have since about 2011. Over that time I've amassed about 10,000 calls with various clients. I'd like to analyze this data to understand things like what days of the week did I have the most calls, what months had the…
1
vote
0 answers

Mark all inbox item as read with google-voice-java

I would like to use this google voice API to mark all my messages as read. The code below does not work, any ideas why? import java.io.IOException; import java.util.Collection; import com.techventus.server.voice.Voice; import…
Pumphouse
  • 2,013
  • 17
  • 26
1
vote
1 answer

Ruby API for Google Voice

Is there a ruby API/Gem for Google Voice that anyone could recommend? I found this gem http://rubydoc.info/gems/google-voice/ but it appears to be half-baked and I haven't had much success using it. For Python there appears to be some viable…
marteljn
  • 6,446
  • 3
  • 30
  • 43
1
vote
2 answers

How do i parse a Google Voice email address with PHP/Regex?

I would like to extract 16197226146 from the following string using PHP: "(480) 710-6186" <18583894531.16197226146.S7KH51hwhM@txt.voice.google.com> Could someone please help me with the regex please?
Josiah
  • 1,117
  • 5
  • 22
  • 35
1
vote
1 answer

Remotely Detect Connection Status of Android Phone

I have an android phone that I am using on Page Plus. I am trying to figure out the best way to remotely detect (from a linux webserver) whether or not the device is connected to a wifi network. I want to disable sms forwarding on my google voice…
xur17
  • 506
  • 1
  • 8
  • 24
0
votes
1 answer

Invoke Google voice actions from text - e.g building my own voice action app

I have an application where I am using the voice recognition in google to get the user voice input as text. This works, no problem - I get the text. Is it possible to send my TEXT STRING to be parsed by the same logic/engine as google's voice…
0
votes
2 answers

API for voice to text conversion.

I have looked over the internet for voice to text conversion APIs. CMUSphinx, Android inbuilt API (Level 3), and pygooglevoice exist. Which among them is the most accurate? (I am looking for an API to be used on a mobile platform). Thanks.
Zeus
  • 1
0
votes
0 answers

Python Google Voice API Login Error: AttributeError: 'NoneType' object has no attribute 'group'

I was hoping somebody could help me figure out why I am getting this error when trying to login through the Google Voice API. I tried substituting the usr and pwd variables with the string literals and still got the same error. Please help! from…