twilio-api

Twilio sandbox webhook url returning timeout execution error

这一生的挚爱 提交于 2019-12-20 06:26:51
问题 can anyone please tell me how to increase timeout for twilio sandbox http post url. I am trying to building one programmable chat application using whatsapp twilio sandbox using asp.net technology. Normally my application methods takes 20 plus seconds to run but when i did same thing on twilio sandbox then its returning execution timeout error. is there any way to increase timeout for twilio sandbox using .net. 回答1: Twilio developer evangelist here. The Twilio webhook timeout is 15 seconds

Adding multiple people to a conference call from caller Twilio

∥☆過路亽.° 提交于 2019-12-19 07:58:20
问题 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 Numbers Simultaneously with Twilio. This article shows how to dial multiple clients or numbers in the same time but the first one who accept the call will connect while the others will be hung up on. <?xml version="1.0" encoding="UTF-8"?> <Response

Move Twilio call to a conference room

时光怂恿深爱的人放手 提交于 2019-12-14 03:55:09
问题 How do I move the two parties involved on the call to a conference room at the same time? I started the call through the Web SDK, thus the call started from a <Dial> element. Now I have the ParentCallSid and ChildCallSid to identify each party. But using the Twilio's PHP library, I can't seem to find how I can move both parties to a new URL (which would start the conference) at the same time. And if I try to move only one at a time, the moment I move one party Twilio hangs up the other party,

Twilio Inbound Messages showing as 'No Incoming Messages' even though SMS has been sent to that Twilio number

风流意气都作罢 提交于 2019-12-14 03:09:25
问题 I'm trying to use Twilio to create an automated test which includes a one-time-password (OTP) sent via SMS for my organization. General Flow: User signs up, inputting phone number User receives OTP (from Nexmo's Verify) via SMS User inputs the OTP received The idea for me to automate this is to have my test script inputting the Twilio phone number, calling the Twilio SMS API (doc: https://www.twilio.com/docs/sms/api/message-resource), extracting the OTP from the message and inputting it into

Is it possible to change the Messaging URL callback with the Twilio API?

时光总嘲笑我的痴心妄想 提交于 2019-12-12 18:03:20
问题 Hello and thank you for reading. Is it possible to change the Messaging URL callback with the Twilio API? 回答1: You need to POST to an IncomingPhoneNumber instance resource. You can do it with curl , or if you're using another language read these docs, https://www.twilio.com/docs/api/rest/incoming-phone-numbers?code-sample=code-update-an-incomingphonenumber&code-language=curl&code-sdk-version=json (and select another language for the sample code). You will need to know: SUB-ACCOUNT-SID \\ the

Twilio: Android dependencies issue

岁酱吖の 提交于 2019-12-12 05:05:22
问题 I'm currently implementing two Twilio SDKs: Programmable Video IP Messaging Client I'm realizing that one dependency affects the other, or at least so I believe, since I first implemented the IP Messaging Client and it worked flawlessly, and now that I've added the dependency for Programmable Video , when I try to run the project, it says it cannot find 3 of the used classes for IP Messaging Client in the package com.twilio.common , but those for Programmable Video are found. Here's part of

Retrieved Answered_By response as null

廉价感情. 提交于 2019-12-12 04:39:59
问题 I'm following the Answering Machine Detection Beta feature Twilio recently introduced to the API this year. I set the MachineDetection field to Enable and set the MachineDetectionTimeout to 5 seconds. When I make the request using the request-promise package in Node.JS, the following output is returned as a JSON body object: {"sid": "MYSID", "to": "+1845555555", "to_formatted": "(845) 555-5555", "from": "+18569972628", "from_formatted": "(856) 997-2628", "phone_number_sid": null, "status":

twilio conference - get dialedin participants phone input

别等时光非礼了梦想. 提交于 2019-12-12 04:24:08
问题 All the participants to my twilio conference are muted except the presenter. I need to implement a feature where the dialed in participant wants to ask a question by dialing a key on his phone. Essentially a 'raise hand' feature. He can then be unmuted by the moderator and allowed to ask his question. I already have a build in dashboard to mute/unmute the participants. is there a way that the caller can hit *1 or some combination of keys that I can then use in my callback. I've tried using *

Twilio Messaging - Correlating SID

こ雲淡風輕ζ 提交于 2019-12-12 04:12:56
问题 We use twilio for sending message. We are not sure how to correlate the response with the message we send. We might send multiple messages to the same Mobile. But, not sure how to correlate response with the messages we sent as the SID's are different. Is there anyway to relate the response with the message. Thanks 回答1: No, SMS doesn't work like that. I you send me 5 text messages from your cellphone and then I reply to one you have no way of telling which one I'm replying to. It's not a

Twilio origination and termination SIP URI's with Java

▼魔方 西西 提交于 2019-12-12 03:43:32
问题 What I'm actually looking for are the termination and origination SIP URI's for a given trunk. The closest I found so far was: getCredential public Credential getCredential(String credentialSid) Gets the credentials from the credential list Returns: the credentials https://twilio.github.io/twilio-java/com/twilio/sdk/resource/instance/sip/CredentialListInstance.html#getCredential-java.lang.String- How do I get a credentialSid , and, what is a credentialSid ? SID is Security IDentifier? see