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

Python Twilio Message blocked (Error - 30004)

I tried to create a python app which sends a sms notification using twilio. When I try to send a message using the twilio client I get (in the Twilio Debugger): Error - 30004 Message Delivery - Message blocked Possible Causes The destination…
david nadal
  • 279
  • 4
  • 16
5
votes
1 answer

Can't install Twilio gem - libxml issue

After having hours of trouble trying to install the twill-ruby gem in both a regular script and rails app I've come to the pros. The error I'm getting is "In Gemfile: twilio-ruby was resolved to 5.2.0, which depends on libxml-ruby " I tried…
James H
  • 562
  • 2
  • 7
  • 20
5
votes
2 answers

Can I forward SMS to an email using ONLY a twiml bin?

It's very clear how you should forward an SMS to an email address using twilio - they have a good example of doing it with php code hosted on a third party server. However, I would like to forward an SMS to an email address using ONLY a twiml app…
user227963
  • 221
  • 2
  • 6
5
votes
1 answer

Adding multiple people to a conference call from caller Twilio

I read lots of articles about Twilio conference call. I created a php function which creates a Twilio conference which can add any one who have access to that link to the Conference with this link. so then I read this article about Dialing Multiple…
Martin
  • 429
  • 3
  • 18
5
votes
1 answer

How can i retrieved all twilio channels or paginated, ordered by updated channel attribute?

I am retrieving all channels on a javascript client, but I got an issue because I need to order the channels throught the "channel updated" attribute and that's a problem because I am using this code to retreive the channels: var messagingClient =…
5
votes
2 answers

Twilio Error - 12300 - Invalid Content Type only sometimes

I have a C# / .NET WebApi endpoint tied to a number. When that number receives a text, it's forwarded to my API via webhook. Sometimes (not all the time), I get an error in my debugger with the following: Error - 12300 Invalid…
SB2055
  • 12,272
  • 32
  • 97
  • 202
5
votes
1 answer

Why is there an underscore following the "from" in the Twilio Rest API?

In the twilio python library, we have this feature to create messages: from twilio.rest import TwilioRestClient and we can write: msg = TwilioRestClient.messages.create(body=myMsgString, from_=myNumber, to=yourNumber) My question is simple: why…
Newb
  • 2,810
  • 3
  • 21
  • 35
5
votes
1 answer

How to not offer a task to specific worker on Twilio

I am new in Twilio and i have been facing an issue while designing outbound dialer currently preview dialing. If a worker rejects a task than the same task should not be offered to that worker again. How do i handle this case?
Faisal
  • 81
  • 4
4
votes
2 answers

Twilio nodejs in es module

How to import twilio into nodejs es module? const client = require("twilio")(YOUR_ACCOUNT_SID, YOUR_AUTH_TOKEN);
SavceBoyz
  • 59
  • 5
4
votes
4 answers

Twilio Channel - SMS 60200 Invalid parameter error (400 bad request)

I'm getting a "400 - Bad Request" error with Twilio API, but couldn't find the reason. Here's my request: curl --location --request POST 'https://verify.twilio.com/v2/Services/xxxxxxxxxxxxxx/Verifications' \ --header 'Authorization: Basic xxxxxxxxx'…
PiyushG
  • 41
  • 2
4
votes
1 answer

Twilio API - Too Many Requests when sending SMS

I know this has been asked a few times but I'm trying to track down what my exact issue could be. I've got a C# app, which queues up messages to be sent (using Azure Storage Queues) and these are processed by an Azure Webjob. We're using the…
lhan
  • 4,585
  • 11
  • 60
  • 105
4
votes
0 answers

Twilio programmable chat: Invites expiry and user limit

This is regarding twilio's programmable chat invite to private channel. I have a few doubts: Is there an expiry on the invite sent to the user (time limit within which it should be accepted)? Is there a limit on the number of invites sent per…
tsikka
  • 191
  • 6
4
votes
1 answer

How to add another number to the current call using Twilio?

I am developing a Java application using Twilio. So I was able to create a call between two users. One to one call. But I need to add another person/number to that ongoing call. Like a group call If I needed it. So basically there are two people who…
H Athukorala
  • 739
  • 11
  • 32
4
votes
0 answers

Unconsumed Message Count return null in active channel

Hi I am working in chat base application by using Twilio Programming chat in android But facing a strange issue .I have bottom navigation where i display Total Unread count of chat and chat listing where user see individual unread count of each…
Abdul Wahab
  • 411
  • 6
  • 15
4
votes
2 answers

"Uncaught ReferenceError: room is not defined" when attempting to disconnect from Twilio Video room

I'm using the Twilio Video Javascript API to stream and record video content from the browser. The application is built in Nodejs/Express and I am loading the Twilio API from a CDN link in the page. So far I can successfully instantiate a room and…
hughesdan
  • 3,019
  • 12
  • 57
  • 80