Questions tagged [twilio-api]

Twilio provides a bunch of APIs for services like Chat, Voice, SMS, Fax. Any issues or problem faced related to those APIs, this tag will be used.

The Twilio REST API allows you to develop Chat applications, Applications with SMS, Fax and Voice capabilities. There are separate micro-services (REST API group) and SDKs hosted on twilio site and any issues related to the API and SDK can be tagged using this Tag.

2398 questions
4
votes
0 answers

Twilio Dial verb with hangupOnStar, action is triggered without star being pressed?

We're experiencing a production issue where users have triggered a Dial verb action without pressing star, while hangUpOnStar is set to true and remaining on the call. This has recently been reported by clients in the US. We haven't been able to…
JMWC2019
  • 199
  • 1
  • 1
  • 8
4
votes
2 answers

Twilio video onParticipant{Disabled}VideoTrack Freezes Video

I have used twilio-video:1.19.2 in angular 8. I have implemented functionality of one-to-one video call. Below is my code i use to enable/disable video. toggleVideo() { this.videoConference.isPaused = !this.videoConference.isPaused; …
Ankur Akvaliya
  • 2,989
  • 4
  • 28
  • 53
4
votes
2 answers

Twilio REST Client stops working after adding Studio Flow?

I am using Twilio REST client in Visual Studio 2017. After adding a Studio Flow for a simple SMS autoresponder, I am no longer able to use the Twilio REST API to send a SMS message from my ASP.net app. The error message is "Upgrade Required" at…
A. Niese
  • 399
  • 3
  • 13
4
votes
2 answers

"Call to getUserMedia failed: DOMException" Twilio Video Call with Chrome version "Version 72.0.3626.96"

I have added twilio video js file from cdn "// media.twiliocdn.com/sdk/js/video/releases/1.14.1/twilio-video.min.js" I tried to add adepter.js but seems same error. Twilio.Video.createLocalTracks({ audio: true, video:…
4
votes
1 answer

Facing some error in implementing twilio programmable voice call in java android studio

I'm implementing Twilio programmable voice call in java android studio as description they gave in their docs but facing some error when run See the exception I received below: Exception in thread "main" java.lang.NoSuchFieldError: INSTANCE …
JUNAID ALI
  • 41
  • 3
4
votes
1 answer

Twilio 5x C# Libraries - Gather digits while message is being read

The new Twilio 5x libraries have introduced a bit of an odd approach to gathering DTMF digits on phonecalls. The old 4x code for a gather would have looked something like: twiml.BeginGathertwiml.BeginGather(new { numDigits = "1", action =…
Scuba Steve
  • 1,541
  • 1
  • 19
  • 47
4
votes
1 answer

Sending a binary file with RestTemplate, the cURL's --data-binary way

I'm trying to implement the equivalent of the following cURL command in Spring, to call an API (Twilio) to upload a media : curl --header 'Authorization: Basic ' --data-binary "@test.png"…
Clément Poissonnier
  • 1,289
  • 2
  • 12
  • 26
4
votes
1 answer

Twilio action for record

I'm trying to create a Twilio workflow that places a call and records what the user says. For that I'm using Record, but I'm not entirely sure what to place in the action parameter. Even though I understand Twilio will send information about the…
t988GF
  • 183
  • 7
4
votes
3 answers

Twillio - Requested resource Messages.json was not found

can anyone tell me how to resolve this problem. Java code is like below. @Service public class TwilioServiceProvider { private static final String ACCOUNT_SID = "ACbfadc94adf90fd6606222566aab3ef4"; private static final String AUTH_TOKEN…
4
votes
0 answers

Twilio API ApiConnectionException "A Task Was Canceled"

I'm using the Twilio C# API to send batches of messages to the Twilio API (typically small amounts, but can grow to several thousand at a time), and in an effort to make the process faster, I started switching everything over to asynchronous calls…
JD Davis
  • 3,517
  • 4
  • 28
  • 61
4
votes
0 answers

Volume Control in Video Element using Twilio Rooms

I'm using Twilio Rooms to do a webrtc video/audio conference call.. When receiving the tracks (video + audio) I attach them to an element: participant.tracks.forEach(track => { …
pmeyer
  • 890
  • 7
  • 31
4
votes
2 answers

Twilio outgoing call from browser

I am begineer in twilio. I have read quickstart to make outgoing call from browser. My code is given below
4
votes
2 answers

Twilio Video - How to get current number of participants in a room?

I would like to know how many people are currently connected to a room when using Twilio Video. Twilio has a REST API to get a room resource, but it does not return current number of…
Koder
  • 1,794
  • 3
  • 22
  • 41
4
votes
3 answers

Send Bulk SMS via Twilio Rest API with PHP

I am using Twilio PHP Library, and i want to send SMS messages to a big list of people using Twilio PHP REST API. I have a text file, that contains the list of unique phone numbers (approx 1000 members). Currently my plan was to create a cron job,…
shasi kanth
  • 6,987
  • 24
  • 106
  • 158
4
votes
2 answers

How to record a voicemail if a number is not picked up in Twilio?

I am using Twilio in a PHP project, currently I am able to make calls and send SMS using its API as given below: $client = new \Services_Twilio($AccountSid, $AuthToken); try { // Initiate a new outbound call …
Amrinder Singh
  • 5,300
  • 12
  • 46
  • 88