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
1 answer

Can I setup a PHP Twilio application server and grant push capabilities

I currently use a Python Twilio application server and grant push capabilities to my tokens with the following lines of code: @app.route('/accessToken') def token(): account_sid = os.environ.get("ACCOUNT_SID", ACCOUNT_SID) api_key =…
David
  • 95
  • 9
2
votes
1 answer

Making calls with new Twilio Programmable Voice SDK

I am using the new Twilio Programmable Voice SDK v2.0.0-beta2 All of the tests (incoming and outgoing calls) in the Quickstart worked fine. Now that I'm trying to actually make and connect calls from one phone with the test app to another phone with…
David
  • 95
  • 9
2
votes
1 answer

Twilio conference call live streaming in website

Hi everyone, I am new to the Twilio API. I have successfully setup call conferencing and recording. But my requirement is to stream live conference call from website. Is it possible...? I have been searching in google from 2 days but no…
RAJESHINDIN
  • 171
  • 1
  • 3
  • 16
2
votes
1 answer

Twilio outbound call to conference

I need help. I have an agent and client situation. If the Agent make an outbound call and the client answer it, There is a button on my system which should redirect the both of the agent and client to a conference. The below code is my function…
2
votes
0 answers

Failed to add participant into ongoing video call with Twilio sdk

Hi I am developing android application. I am using twilio for video calling feature.I am able establish one to one video call between two participant. I am also able to do video call with multiple participant. Only thing I am not able to add…
nilkash
  • 7,408
  • 32
  • 99
  • 176
2
votes
1 answer

Twilio respond to keypress during voice call

I am new to Twilio and to programming in general. I have a simple Arduino based App running on an ESP8266. Basically it rings an alarm on a scheduled basis, and requires the user to press a button to silence the beeping alarm. If the alarm beeps 10…
2
votes
1 answer

How to process Twilio 'Programmable video' JWT access token correctly? (Android)

I trying to embed Twilio's Programmable video into my Android app. I've created an endpoint on my java server, which uses "com.twilio.sdk" % "twilio-java-sdk" % "6.3.0" library for obtaining access tokens with following code: private static final…
Arkady
  • 1,178
  • 14
  • 35
2
votes
1 answer

Twilio request routing issue - no route matches

I have tried following this tutorial to set up a basic Twilio app but I seem to be having an issue with the routing. I am getting this error returned when I send a message to it: ActionController::RoutingError (No route matches [POST] "/") Here is…
thrgamon
  • 438
  • 1
  • 5
  • 14
2
votes
1 answer

File transfer support with Twilio IP Messaging / Chat?

I hope not 'too dumb' of a question. We want to build chat support into our app using Twilio's IP Messaging feature/servce... no problem thus far. However, does anyone know or can recommend what to use in combination with IP Messaging to also…
JohnDoe999
  • 31
  • 2
2
votes
0 answers

django twilio for number phone confirmation returns exception in send function

I got an exception when i create a sms to send here is my functions def send_sms(to_number, body): account_sid = settings.TWILIO_ACCOUNT_SID auth_token = settings.TWILIO_AUTH_TOKEN twilio_number = '+15005550006' client =…
Afaf
  • 654
  • 1
  • 5
  • 17
2
votes
2 answers

Is there a way to know a Twilio call failed without calling the REST API?

I'm using Twilio.Device in an Angular app and I need to display a message if the call failed due to an invalid number. I know that you can call Twilio's REST API to get the call status, but is there a way to get the status without making that extra…
chinaowl
  • 532
  • 5
  • 15
2
votes
1 answer

How can I integrate Twilio's 2 factor sms authentication with Firebase and Ionic (Javascript)?

I don't have a programming experience but I am pretty sure my developer is wrong about believing that the only way we could integrate twilio into our app is if we use Auth0. He thinks we have no other alternative since firebase has changed so much…
2
votes
1 answer

Is there a way to associate original SMS sent and a reply SMS received by a Twilio number?

I have an application where I use Twilio to send an SMS to a list of phone numbers which is triggered by an event. This works fine. Now, I need to extend this feature such that, if any one of the recipients do reply to the original message, My…
Jose Francis
  • 950
  • 13
  • 28
2
votes
1 answer

WebRTC video call and IONIC, call when app runs in background

I made an application using twilio, webRTC and ionic, and the video call is working. However, is it possible to make the video call when the app runs in background? I couldn't come up with a solution with ionic.
Sunil Lama
  • 4,531
  • 1
  • 18
  • 46
2
votes
3 answers

Token expiration in Twilio

I'm working on embedding a soft phone into a web page that will go into Odoo (web based ERP system). It will allow inbound and outbound calls for employees. The token expires every hour. So this means the user will have to refresh the page every…