Questions tagged [twilio]

Twilio provides APIs and tools to add communications-related functionality (SMS/MMS, voice, video, e-mail, chat, 2FA, and others) into web and mobile applications.

Twilio provides APIs and tools to add communications-related functionality (SMS/MMS, voice, video, e-mail, chat, 2FA, and others) into web and mobile applications. There are helper libraries for many server-side programming environments (listed below), and client-side libraries for desktop web browsers, , and .

Documentation

Libraries / Language support

Related tags

  • Largely duplicative of this tag
  • Questions related to Twilio's Programmable Chat SDK
  • Questions related to Twilio Functions, a serverless function service operated by Twilio
  • Questions related to using Twilio Voice for standard PSTN phone calls or VoIP calling
  • Questions related to the WebRTC Video SDK for web and mobile apps
  • Questions related to Twilio's programmable contact center platform.
  • Questions related to Twilio's visual programming tool, Twilio Studio
  • Use to identify questions related to use of, or problems with, Twilio's APIs in PHP applications.

SIGNAL

Twilio's annual conference for programmable communications in San Francisco. Details for the next conference date can be found here.

10218 questions
2
votes
2 answers

Move Twilio call to a conference room

How do I move the two parties involved on the call to a conference room at the same time? I started the call through the Web SDK, thus the call started from a element. Now I have the ParentCallSid and ChildCallSid to identify each party. But…
Brayan
  • 460
  • 2
  • 5
  • 17
2
votes
1 answer

Twilio browser client example not working

I'm trying to run the example here: https://www.twilio.com/docs/quickstart/python/client/outgoing-calls I run the flask script on port 5000 and try loading in my browser and I see the input box for my phone number but it just says Loading Pigeons…
2
votes
1 answer

Twilio incoming call issue in twilio iOS Sdk

I am using twilio iOS sdk in my application and am having problem with incoming call . I can able to get incoming call, but the caller disconnect the call after he spoke i didn't get any callback in my app. so i can't able to identify that call has…
ashok vadivelu
  • 493
  • 5
  • 12
2
votes
2 answers

What should I use as the document key to maintain idempotency?

What should I use as the document key to maintain idempotency? I'm building a text messaging application that uses CouchDB (with PouchDB on the client) to store messages locally. Twilio (SMS provider) generates an ID for each message, and I use that…
Tobias Fünke
  • 2,034
  • 3
  • 24
  • 38
2
votes
1 answer

Codeigniter 3: How to use composer packages? (Twilio SDK)

What I did so far: I am pretty familiar with CI, but new to composer and the twilio SDK. Reading some tutorials and docs I managed to install composer and the twilio package. However the /vendor folder is parallel to my CI…
Steven M
  • 574
  • 4
  • 20
2
votes
1 answer

How can i install twilio package via pip?

I have Python 2.7.12 (64 bit) installed on my Windows machine. When I installed it, I added pip and the python.exe path. Now when I try to install Twilio with pip install twilio I get the error pip is not recognized as an external or internal…
squal
  • 185
  • 3
  • 14
2
votes
0 answers

Making an outbound call and bridging both into a conference

I have what I think is a bit of a strange situation. I'm wondering if this is possible. I need to: Place an outgoing call from a browser to [number] Ensure the person placing the above call hears the normal ringing sound If the person at [number]…
mattjn
  • 107
  • 1
  • 6
2
votes
1 answer

Twilio: Are 11200 Error's attempted more than once?

This isn't a question about why I got 11200 error. All I'm asking, is if twilio attempts the request again at a later time? The documentation: https://www.twilio.com/docs/api/errors/11200 , doesn't mention anything about reattempting.
Andrew Wei
  • 2,020
  • 1
  • 17
  • 28
2
votes
2 answers

Twilio: java.lang.NoClassDefFoundError: com/twilio/sdk/TwilioRestException

I am trying to send a sms using twillio, here the code: import com.twilio.sdk.TwilioRestClient; import com.twilio.sdk.TwilioRestException; import org.apache.http.NameValuePair; import org.apache.http.auth.Credentials; import…
Simone Salvo
  • 343
  • 1
  • 2
  • 11
2
votes
1 answer

Problems with passing data to twlio

Controller public function searchNew() { $sid = //account_sid; $token = //auth_token; $client = new Services_Twilio($sid, $token); $country = $this->input->post('select_country'); $type = $this->input->post('type'); …
Beldion
  • 321
  • 8
  • 19
2
votes
1 answer

Retrieve & hold call in twilio

I put the twilio call on hold by following snippet var twilio = new TwilioRestClient(Settings.AccountSid, Settings.AuthToken); twilio.RedirectCall(callSid, Settings.HoldMusic, "GET"); But i want to retrieve the holded call back.. Can you…
2
votes
1 answer

integrate real-time a/v chat into construct 2 game or embed construct 2 into app

I would like to incorporate QuickBlox or Twilio WebRTC chat and A/V calling into the same Angular apps running on a web page or inside a Cordova/Crosswalk app, as a Construct 2 game. I would like to have an audio/video chat running during game play.…
2
votes
1 answer

I can not play twilio recording's from my site

I am trying to play my recorded calls that I got back from twilio. So far I have a list of all my recorded calls on my site and when I click them it sends me to twilio to listen to them. I then make a ajax request to get back the information from…
2
votes
1 answer

Twilio phone number "renamed" to 'LTinbox'

Today messages from twilio to customer phone (in Belarus) start come with "phone" -- 'LTinbox', what is a reason of it?
Roman Evseenko
  • 168
  • 1
  • 7
2
votes
2 answers

AlamoFire for twilio

I am trying to send a post request for the twilio api using swift and Alamofire, but I am having some issues. This is the function that should send the text: func sendSMS() { let parameters = [ "To": "+12036044632", "From":…
Matthew Bergwall
  • 310
  • 1
  • 10
1 2 3
99
100