Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twilio vs google voice api for SMS [closed]

I am building a mobile app (android et al) that I need to use SMS for. The SMS would simply send an activation code when user first registers with my app (and maybe one other equally simple usage). Since Google is a respected company and Google voice is free (API), I was thinking of going with Google Voice. However, a lot of developers seem to be using Twilio. Is there an advantage to using Twilio SMS over Google Voice SMS for my basic usage of sending verification code (again, Google Voice is free)?

like image 300
learner Avatar asked Apr 15 '13 16:04

learner


People also ask

Is Twilio the same as Google Voice?

Twilio enables software developers to build a platform to solve business problems or create products that serve end-users. Contrary to this, Google Voice is a call management software and phone system that allows you to send texts, voicemails, and calls at a click.

How reliable is Twilio SMS?

Twilio's services and tools are reliable, easy to configure, easy to manage, and inexpensive. Comments: We use Twilio trunking for our multi-location PBX, and SMS messaging for customer communication. Twilio has worked out very well for us and I would strongly recommend them to other businesses.

Can I use my Google Voice number with Twilio?

Yes. You can port Google Voice numbers to Twilio as long as they are 10-digit US numbers.

Does Twilio work for Google?

With Twilio, you can support rich, conversational messaging on Google's Business Messages. The Conversations API allows you to manage multiparty conversational messaging at scale across channels including SMS, MMS, WhatsApp and now Google's Business Messages.


2 Answers

The API you are linking to is not an official Google API and therefore there is no guarantee that either it will work reliably or that Google will not decide to disable the API at some point. So you are paying for a level of reliability rather than relying on an unofficial hook into Google Voice.

There are lots of SMS APIs available, Twilio is a well known one for sure but there are others. Take a look at another answer I posted a while back listing some of the providers. How to send SMS programatically in a professional and reliable way?

like image 200
Rod Burns Avatar answered Oct 19 '22 06:10

Rod Burns


Google Voice appears to limit the number of SMS messages that can be sent. They don't go into detail about the limits.

To prevent abuse, there are limits to the number of text messages you can send from Google Voice. If you've reached the limits, you will see a message that says 'Your message was not sent because the text message limit was reached. Please try again later or try sending to fewer contacts.' You'll have to send to fewer people, or try sending your text message at a later time.

Twillio does also limit the number of SMS messages, but it's a documented limit.

Each Twilio SMS-enabled long code (regular 10 digit number) can send 1 SMS message per-second, per-number. Unfortunately we are not able to adjust this rate limit. If your application requires a high volume of outgoing SMS, we recommend using an SMS short code.

So I guess the difference is, one may cut you off, but is free. The other won't, if you stay with in their limits, but costs money.

like image 26
Steve K Avatar answered Oct 19 '22 06:10

Steve K