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

Twilio TaskRouter JS SDK not working

According to Twilio Docs I'm trying develop a Call-center Application But The TaskRouter JS v1.13/taskrouter.min.js Not supporting as twilio explain in document…
SamDev
  • 185
  • 2
  • 11
14
votes
7 answers

Twilio REST API error - "Authenticate"

I'm getting the following error when I try to place calls using the Twilio REST API. https://www.twilio.com/docs/api/rest HTTP/1.1 401 Unauthorized Server: nginx Date: Thu, 10 May 2012 16:50:48 GMT Content-Type: application/xml Connection: close…
Sparky
  • 4,769
  • 8
  • 37
  • 52
9
votes
3 answers

I'm getting error Upgrade Required while integrating twilio whatsapp in c#

This is the error I am getting while trying to send the message. An unhandled exception of type 'Twilio.Exceptions.ApiException' occurred in Twilio.dll Additional information: Upgrade Required My code is: const string accountSid =…
learner
  • 91
  • 1
  • 1
  • 3
9
votes
3 answers

TwilioRestClient removed

tClient= TwilioRestClient(sid, token) This code throws exception: twilio.base.obsolete.ObsoleteException: TwilioRestClient has been removed from this version of the library. Please refer to current documentation for guidance. Can't seem to…
RobD
  • 435
  • 4
  • 11
  • 21
9
votes
1 answer

Is Twilio API_KEY_SECRET is same as the Twilio Auth Token in console?

I am trying to use Twilio Video for which I need to obtain access tokens(jwt) from my app server. Below is the NodeJS app server code that generates an Access token. In the below credentials, API_KEY_SECRET is required, I thought this is same as…
SpaceX
  • 2,814
  • 2
  • 42
  • 68
9
votes
0 answers

React Native Twilio Android Errors

I've been trying to debug this for a while but can't come up with anything. The app uses this react native twilio library. Everything works great on iOS, but in Android, after creating a call, I get what looks like an infinite loop stating the…
Nader Dabit
  • 52,483
  • 13
  • 107
  • 91
8
votes
1 answer

Can we do VOIP push notification using Twilio iOS SDK?

I have to implement App to App functionality using Twilio iOS SDK. I have successfully implemented voice calls when the app is running. Now I am facing a problem when the app is killed. How can I get VOIP push notifications for an incoming call? I…
Wos
  • 390
  • 1
  • 16
8
votes
3 answers

How to disable automated SMS responses in Twilio?

In March I opened a website that provides people with temporary numbers to be used to receive SMS verifications etc. I've just logged in to the account and realised that I've received a ton of charges for outbound SMS. They appear to be a default…
user598200
  • 295
  • 1
  • 4
  • 7
7
votes
2 answers

C# Twilio retrieve composition media

I'm trying to download a composition media file into my hard drive using the following code: try { var uri = "https://video.twilio.com/v1/Compositions/" + sid + "/Media?Ttl=6000"; var request = (HttpWebRequest)WebRequest.Create(uri); …
Mo Sadeghipour
  • 489
  • 8
  • 25
7
votes
2 answers

Receiving and processing an SMS with Twilio in Python

I'm learning python and as a project I'm trying to create a program that will recieve an SMS message, process it, and then depending on what is in that message, send back information. I am using Twilio in python with Flask and ngrok to do all the…
jaspar
  • 103
  • 1
  • 6
7
votes
1 answer

Get Twilio Chat User Channels sorted by last activity or unread count?

We are developing a chat system where users can be in many chat rooms, and I'd like to be able to show the most recent channels first. This could be either by the time the last message was sent, or even by the number of unread messages, as long as…
Bonnici
  • 1,596
  • 2
  • 12
  • 21
7
votes
2 answers

Twilio Chat API, getUnconsumedMessagesCount always 0

I'm trying to get the number of messages unread for a specific member in a specific channel. To do this I was hoping to use channel.getUnconsumedMessagesCount() as defined in the documentation. myChannel.join() .then(function(c) { …
guiomie
  • 4,988
  • 6
  • 37
  • 67
7
votes
2 answers

Twilio blacklist rule fatal error

I am using twilio to send bulk sms messages. Let's say some customer decided that they don't want to receive messages anymore so they reply with "stop" and that will add them to the black list. I am hard coding the phone numbers because I am still…
Hussam Hallak
  • 303
  • 4
  • 21
7
votes
3 answers

How to transfer phone number from master account to subaccount

I have read the tutorial in twilio but its not quite clear. Can someone lay down the step by step procedure please? Here is what I got from twilio: Exchanging Phone Numbers Between Accounts You can transfer numbers between subaccounts, and between…
Yvonne Lopez
  • 71
  • 1
  • 3
6
votes
1 answer

Handling network errors with axios and Twilio

I have an application that uses axios for it's ajax requests. When a user experiences a network issue (for example, their wifi goes out and they no longer have an internet connection while on my application), I want to make sure that only the first…
Jimmy
  • 3,090
  • 12
  • 42
  • 99
1
2 3
99 100