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
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
  • 1
  • 9
6
votes
2 answers

twilio App to App calling is not working

I have setup TwiMl on eroku in Python. When I call user A from user B, user A didn't get call and VOIP also, while user B is got bot message like "thanks for calling". When I try to placeCall to user B from PostMan, user B gets call and also got bot…
PinkeshGjr
  • 8,460
  • 5
  • 41
  • 56
6
votes
2 answers

java.lang.reflect.InvocationTargetException at com.twilio.sdk.AppEngineClientConnection.flush(AppEngineClientConnection.java:204)

I run this code: private void notify(String date, int space) throws IOException { String ACCOUNT_SID = "dddddd"; String AUTH_TOKEN = "ggggggg"; String TWILIO_PHONE = "+my twilio project"; String ELAD_PHONE = "+my…
Elad Benda
  • 35,076
  • 87
  • 265
  • 471
6
votes
2 answers

What's more appropriate to use Twilio Client vs Twilio Video API?

I've been reading Twilio docs lately and been confused between "Twilio Client" and "Twilio Video". I noticed that tutorials for "Twilio Client" involves registering phone numbers while the beta "Twilio Video" would not need one (after doing the…
Woppi
  • 5,303
  • 11
  • 57
  • 81
5
votes
0 answers

Twilio error - No transport available to send or receive messages

i'm so confused what caused of this problem? i try to make browser call with twilio-client and twilio/sdk on laravel, Error - 31009 Transport error No transport available to send or receive messages. the sample here working fine but when i tried to…
Jazz
  • 183
  • 9
5
votes
0 answers

Reading data from Twilio Video Streams

Tl;dr: I want to read video streams coming from all the participants from this https://tfvideo-5708-dev.twil.io/video.html in python Details: I have a live tutoring website that uses Twilio Video API to carry out the video class. I want to run the…
5
votes
0 answers

Twilio programmable chat: Is there a way to listen to messageAdded event on invited channels?

I have a list of subscribed and invited channels for a user and I added messageAdded event on client so that it can listen to all the channels (subscribed). Now the need is that I want the user to be able to see new message notifications on the…
tsikka
  • 191
  • 6
5
votes
1 answer

Getting error required parameter opts.to missing

I am using Twilio SDK for my Postman request. I have stored my credentials in an .env file for now. exports.send = async (messageBody) => { client.messages.create({ body: messageBody, To: twilioTo, From: twilioFrom }, (err, message)…
Sourabh Shah
  • 140
  • 2
  • 11
5
votes
1 answer

PHP Twilio RequestValidator returning false on all endpoints

So I really don't know what the problem is here, I've tried many things, but I can't get the Twilio request hashes to match up. Let me explain. I decided to implement an instance of Twilio's RequestValidator to ensure the requests were coming from…
Adam McGurk
  • 186
  • 1
  • 19
  • 54
5
votes
2 answers

How to implement typing indicator in WhatsApp when using npm twilio package

I am implementing twilio/whatsapp webhook in order to process messages sent to twilio whatsapp-enabled number. The implementation is done in Node.JS using npm twilio library. I am sending response syncrhonously (as response to webook request)…
Adam Bezecny
  • 195
  • 1
  • 11
5
votes
1 answer

Does MMS support sending HTML content?

We are using SMS to send text messages to our client base but recently there has been request to send HTML content as well. I know SMS only supports text messages and the only way I am aware of sending any type of html content via SMS is to provide…
Mark
  • 1,667
  • 2
  • 24
  • 51
5
votes
1 answer

Is there any limit for number of participants in a room in Twilio Video API?

Is there any limit for number of participants in a room of group type in Twilio Video API? In the documentation is specified a limit for peer-to-peer type but said nothing about group type rooms. UPDATE: Twilio mentioned limit for 50 participants…
boxx
  • 1,111
  • 2
  • 9
  • 15
5
votes
3 answers

How to send bulk sms in twilio api without for loop

I'm trying to send bulk sms through twilio Api. Is there any method to pass the array of all phone numbers in a single API request.
Hassan Ejaz
  • 183
  • 2
  • 16
5
votes
0 answers

Swift Twilio's programmable chat client slow connection

I'm using Twilio programmable chat on swift and it takes the client up to 5 seconds to connect. Here is the code: let start = Date() TwilioChatClient.chatClient(withToken: token, properties: nil, delegate: self) { (result,…
Rotem
  • 2,306
  • 3
  • 26
  • 44
5
votes
2 answers

Twilio-video: how to tell if a track is a screenshare?

Right now in "room.on('trackAdded')", I can't tell if the track which was added is a screenshare or not. Is there a way to tell?
y_arl
  • 331
  • 1
  • 3
  • 13