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
0
votes
2 answers

twilio node.js not sending sms

I have the following code that gets executed as a lambda trigger for amazon sqs event. require('dotenv').config() const client = require('twilio')(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN); exports.handler = async…
Dan Friedman
  • 427
  • 2
  • 6
  • 16
0
votes
1 answer

Is it possible to add quick buttons in Autopilot chatbot?

Autopilot's chatbot does seem to be not very user-friendly to expect the end-user to type out every response while engaging with the chat bot. Any advice on improving the UX is very much appreciated. I'm a novice in this space Much appreciated
lily
  • 385
  • 1
  • 3
  • 21
0
votes
0 answers

Twilio Video and Audio stops working after a while during Programmable Video call?

During an hour long video call, audio stops working after sometime (~40 minutes breakpoint) without showing any error in the console. How to catch these issues and fix these? Also, one of the person on the call can hear other but it is not going the…
0
votes
1 answer

How to track link clicks from Twilio SMS

Hi Stack OverFlow community and Twilio Lovers. I am a product manager for a fitness app, we are looking to send automated messages to our new users welcoming them to our app. We would like to include a link which the user clicks and then sends them…
0
votes
1 answer

Problem with my Agent when Integrated with Twilio for WhatsApp

Hello Everyone, Since one week I'm trying to integrate Dialogflow with Twilio for WhatsApp messaging. The integration has been configured successfully, but I'm facing strange error when retrieving our products through HTTP request using Axios. Test…
alawibh
  • 217
  • 1
  • 4
  • 16
0
votes
1 answer

Twilio Error 11200- HTTP retrieval failure: Attempt to retrieve media failed, while trying to Trigger a Twilio Studio Flow Execution via Rest API

I am attempting to build this Appointment Management System for scheduling vaccination appointments using Twilio+ Airtable + Postman. ( [Link to the blog following])2 In order to trigger the Twilio studio flow via Rest API and to get the…
0
votes
1 answer

Twilio "finishOnKey" not working with speech input only

We have requirement where we ask user for description of issue, it can be long some time. So to gather it we have extended speechTimout to "6" but in some scenario it can be a short so we want to have option where user can press key "1" once he…
0
votes
0 answers

ResolutionFailure error while installing Twilio again with other dependencies in django

I need to install twilio in my django-project. The project already has a Pipfile and pipfile.lock containing the other dependencies needed. When I try to install twilio using the command "pipenv install twilio" its gives a resolutionfailure error.…
0
votes
1 answer

When using twilio to generate web app to web app voice calls how can I switch to handheld or loudspeaker based on the user selection from client side

Using ReactJS as the client-side, Are there any build-in functions in "Twilio.Device" that I can use there are some function related to audio in Twilio.Device.audio referred the docs:…
0
votes
1 answer

Twilio mobile browser support for programmable video and chat service?

We are working on a mobile to mobile video calling and chatting service (Browser only for now) using Twilio. Does Twilio supports mobile browsers for video calling? I tried it in my mobile and I was able to start the call successfully but couldn't…
0
votes
1 answer

App Crashing while adding a member in an Private channel in Twilio Chat SDK

I am implementing Twilio Chat SDK where I do add members in a private Channel. The flow goes like this that First I check whether is there a channel in my list or not. If it exists then I join it. And if there is no channel in my list I First create…
0
votes
1 answer

Parallelise chat clients creation in Twilio Programmable Chat

Trying to create a web chat application where we fetch all the channels a user is a part of from Backend. Backend returns an array of objects containing twilio access tokens and channel names. After getting API response, Javascript iterates through…
0
votes
1 answer

Twilio 21211 error "not valid number" but it is

I am doing the whatsapp tutorial on twilio page. But when I try to run it gives me this error. The number is ok, the twilio sandbox goes through with the exact same number. Any ideas? RestException [Error]: The 'To' number +5492xxxxxxxx is not a…
0
votes
1 answer

Twilio Forward calls to outside number, Then disconnect Twilio side

I was wondering if its possible to forward a call from our Twilio IVR to an outside number, then disconnect the Twilio side. The reason for this is we are using a conferencing system to live stream an event. We do not want to incur Twilio charges…
0
votes
0 answers

show how you are trying to show the participants' videos?

Unable to join the room in Twilio Video call and below code am using for create room . private registerRoomEvents() { this.activeRoom .on('disconnected', (room: Room) =>…