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.

1806 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
  • 1
  • 11
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
  • 3
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
  • 47,131
  • 13
  • 103
  • 88
8
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…
Pravi
  • 2,361
  • 2
  • 31
  • 57
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
  • 282
  • 1
  • 14
8
votes
4 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,159
  • 7
  • 33
  • 51
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
  • 339
  • 5
  • 22
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,576
  • 2
  • 12
  • 20
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,600
  • 5
  • 34
  • 65
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
  • 283
  • 4
  • 19
7
votes
2 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
  • 175
  • 1
  • 2
  • 7
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
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
  • 508
  • 4
  • 14
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
  • 1,580
  • 2
  • 23
  • 55
6
votes
3 answers

What does the 's' of Twilio API's sid stand for?

In Twilio's API docs, sid is frequently used, for example, workflowSid. Does the sid means secure id or not? I did some search with no obvious answer. Could anyone please point out what does sid means?
Slacker
  • 177
  • 8
1
2 3
99 100