twilio-api

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

ぃ、小莉子 提交于 2019-12-24 19:54:22
问题 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 per room in the article in their blog. It looks like a very small number. Is it still the same? https://www.twilio.com/blog/2017/05/announcing-programmable-video-group-rooms.html 回答1: Twilio developer evangelist here. The maximum number of

How to know the status of outbound calls?

我是研究僧i 提交于 2019-12-24 19:29:04
问题 I make a outbound call i.e I make a request to twilio to make a call to a number using twilio api. How to know if a person has picked up or rejected the call?. What is statuscallback url?..I dont have a url. 回答1: Twilio developer evangelist here. When you make an outbound call you can register to receive status updates by setting the statusCallback parameter to a URL. When the call changes status, Twilio will send an HTTP request to the URL with details of the call and its current status. To

Transient System.Security.Cryptography.CryptographicException in TwilioRequestValidator

ε祈祈猫儿з 提交于 2019-12-24 12:17:39
问题 So we have our Twilio callbacks setup to validate incoming requests, via the TwilioRequestValidator documented here. However, something we're seeing, is that the production server will run for weeks with no problems, and then suddenly start failing with a CryptographicException. This causes all incoming Twilio requests to fail. We have a call-stack (thanks to Azure Application Insights): System.Security.Cryptography.CryptographicException: at System.Security.Cryptography

Twilio Node.js - Getting Conference Participant Details In statusCallback

匆匆过客 提交于 2019-12-23 16:12:35
问题 I'm trying to have the ability to update a call to dial it into a conference, and then I want to keep track of which phone numbers are in the conference. I'll already have the phone number before updating the call, so my plan was to add it as parameter to the statusCallback, then when someone joins, I'll know which phone number has joined (or left). Here is the Twiml I'm using to update the call into the conference. let conferenceTwiml = function(conferenceName, phoneNumber) { let

How to Send Pdf as MMS by Twilo Using Nodejs?

白昼怎懂夜的黑 提交于 2019-12-23 05:09:27
问题 I have a Test Twilio Number which is capable to send SMS,MMS,Voice Call . I am Successful in sending SMS and Voice call . I am facing a challenge to send PDF as MMS .. As per the TwilioDocs Accepted-mime-types PDF is a Supported Type. While am trying to Send by using the Syntax :- var accountSid = '<accountSid >'; var authToken = '<authToken>'; var client = require('twilio')(accountSid, authToken); client.messages.create({ to: "<validnum>", from: "<validFrom>", body: "Test Message ", mediaUrl

Want to use Whisper in Twilio Studio

五迷三道 提交于 2019-12-22 12:58:36
问题 I want to use the Whisper in Twilio Studio, is this possible?? Now I using only Twilio Studio and TwiML Bin my goal is... User calls to my Twilio number Connect call to the support team phone. After starting the calls between the User(client) & the support team, I want to [Say] a message to the support team then start the calls. How can I do this?? 回答1: Twilio developer evangelist here. Currently you cannot do a whisper with Studio. You could achieve this flow with just TwiML Bins though. You

Twilio REST Client stops working after adding Studio Flow?

时光怂恿深爱的人放手 提交于 2019-12-22 10:46:55
问题 I am using Twilio REST client in Visual Studio 2017. After adding a Studio Flow for a simple SMS autoresponder, I am no longer able to use the Twilio REST API to send a SMS message from my ASP.net app. The error message is "Upgrade Required" at Twilio.Clients.TwilioRestClient.ProcessReponse(Reponse response) at Twilio.Rest.Api.V2010.Account.MessageResource.Create(CreateMessageOptions options, ITwilioRestClient client) at... I already tried upgrading the Twilio REST API helper library NuGet

Http 500 Error Sending a Message using PHP54 and Twilio

社会主义新天地 提交于 2019-12-22 09:48:29
问题 <?php // Require the bundled autoload file - the path may need to change // based on where you downloaded and unzipped the SDK require_once __DIR__ . '/twilio-php-master/Twilio/autoload.php'; #require __DIR__ . '/var/sip10/public_html/htdocs/twilio/twilio-php-master/Twilio/autoload.php'; // Use the REST API Client to make requests to the Twilio REST API use Twilio\Rest\Client; // Your Account SID and Auth Token from twilio.com/console $sid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXX'; $token =

How to not offer a task to specific worker on Twilio

橙三吉。 提交于 2019-12-22 06:55:31
问题 I am new in Twilio and i have been facing an issue while designing outbound dialer currently preview dialing. If a worker rejects a task than the same task should not be offered to that worker again. How do i handle this case? 回答1: Typically if a worker rejects the task, the worker should be moved to an unavailable activity. Otherwise, if the worker is the only available and qualified worker, TaskRouter will continue to create new reservations. You can specify a new activitySid upon rejection

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

我的未来我决定 提交于 2019-12-21 16:37:18
问题 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 Twilio Auth token that can be found in the Twilio console. Is my understanding correct ? if not, where can I find the API_KEY_SECRET ? var AccessToken = require('twilio').AccessToken; // Substitute your Twilio AccountSid and ApiKey details var ACCOUNT