I wanted to discuss the technology behind Twilio. I have been playing around with the service for a few days now and it is simply mind-blowing. While I don't have a direct need for it right now, I am curious to find the back-end of the technology.
So can anyone shed some thoughts on how does Twilio do its magic?
...
I'm making an IVR system for a project, and have decided on Twilio to handle the phone portion (making and receiving calls, sending and receiving SMS messages). This will surface a website with an IVR front-end, allowing users to navigate the site using their touch-tone phone.
I'm not making all the content browse-able over the phone, j...
I'm using twilio as for a mobile verification mechanism, I have no prior experience in using twilio but looking at the sample PHP code I used this one in my code but apparently it's giving me an 400 Bad request HTTP error. Here's the code:
d = {
'TO' : '*** *** ****',
'FROM' : '415-555-1212',
'BODY' : 'Hello...
I've looked at tropo, twilio and cloudvox, plus another bunch.
Most of these services provide their own entry points (PSTN, sip, IM), which is cool.
Unfortunately I already have a local PSTN number that is redirected to a local SIP account.
For business, performance and cost reasons (I'm outside the US) I don't want to simply redirect ...
I'm looking to send an SMS with the Twilio api, but I'm getting the following error:
"unknown url type: https"
I've recompiled python with Openssl, so my code runs fine from the python interpretor, but whenever I try to run it in one of my django views I get this error. Here is my code from my view:
def send_sms(request):
recipient ...
There is a good pitch on Twilio here
I just don't get how they can do that with a website. How can you control a land line with a web browser?
...
I'm trying to get started with Twilio's REST API using the rubygem twilio-ruby, and I've hit a snag. Here's my code:
h = {:From => "123-123-1234", :To => "123-123-1234", :Body => "hey"}
account = Twilio::RestAccount.new(ACCOUNT_SID, ACCOUNT_TOKEN)
resp = account.request("/#{API_VERSION}/Accounts/#{ACCOUNT_SID}/SMS/Messages", 'POST', h)
...
I'm interested to find out how twilio's SMS sending/receiving feature works, on long codes, or local numbers
Outside of the states, mobile originated SMS terminated on a long number is very common, however, inside the US I had thought that the MMA required termination on approved shortcodes?
Any ideas?
Thanks
...
I thought it I could specify any URL - including the twimlets used in conference calls - in the Play verb of a TwiML file. However, the following does not work...
http://twimlets.com/holdmusic?Bucket=com.twilio.music.classical#&Message=please%20wait
... and neither does the twimlet when I strip away the arguments...
http://twimlet...
This Twilio API Sample code isn't working in Rails 3:
#voice_controller.rb
def reminder
@postto = BASE_URL + '/directions'
respond_to do |format|
format.xml { @postto }
end
end
#reminder.xml.builder
xml.instruct!
xml.Response do
xml.Gather(:action => @postto, :numDigits => 1) do
xml.Say "Hello this is a cal...
i am working on sms application with twilio api, i faced a problem about sms formatting
1) a string " i'm here" in php
this is going like this in sms body
i\'m here
i dont want that slash to come up in sms
2) i want to add line break in message how can i do that.
like this
Name age phone
Simer 23 2546181541
Mark 25 3521447821
...