Questions tagged [twilio-click-to-call]

Use to identify questions related to use of, or problems with, Twilio's Click-to-Call service or API.

Use the tag for questions specifically about use of the Twilio Click-to-call service or API.

Twilio refers to a set of web services, APIs and tools provided by the company of the same name, used to send and receive text/picture messages, make and receive phone calls, and embed VoIP calling into web and native mobile applications.

Related tags

  • Use to identify questions related to use of, or problems with, Twilio's APIs.
  • Use to identify questions related to use of, or problems with, Twilio's PHP Helper Library.

Documentation

298 questions
0
votes
1 answer

Add a bot into Twilio conference, and announce some information, using conference Friendly name

With below code my users are joining a conference call, conference is created with unique names. const VoiceResponse = require('twilio').twiml.VoiceResponse; const response = new VoiceResponse(); const dial = response.dial(); dial.conference({ …
Puneet Singh
  • 3,477
  • 1
  • 26
  • 39
0
votes
0 answers

REST API post using Twilio is not working. 404 error message with resource not found

I created a twilio account to make voice calls using api rest. This is my methods: public function llamadaout_get(){ $sid = 'XXXXXXXXXXXXXXXXX'; $token = 'XXXXXXXXXXXXXXX'; $client = new Client($sid, $token); $call =…
50l3r
  • 1,549
  • 4
  • 16
  • 27
0
votes
0 answers

Twilio Click-to-call: Say message to second caller if first hangs up?

Newbie to Twilio here. I'm calling a user via calls.create: client.calls.create(options) .then((call) => { console.log('Call ID='+call.sid); response.send('Dialing User at '+userPhone); }) and then calling a second person and…
0
votes
1 answer

Is it possible to enable dual channel recording with following code

I am able to call a number with following code from the link https://www.twilio.com/docs/api/voice/making-calls Is it possible to enable dual channel recording with following code ?. if yes, how ? SDK Version: 6.x 7.x // Install the Java helper…
user754657
  • 388
  • 3
  • 14
0
votes
1 answer

Live conversation between two number using twilio

I want to make live conversation between number 1 and number 2. My code is given below -
0
votes
2 answers

Twilio - who said what

I am following this blog https://www.twilio.com/blog/2016/05/introducing-dual-channel-recording.html and was able to get recording for each channel. How to differentiate who said what using following response ? { "first_page_uri":…
user754657
  • 388
  • 3
  • 14
0
votes
0 answers

How to store recordings for each channel

I am following following blog to click to call. https://www.twilio.com/docs/tutorials/click-to-call-java-spring I am able to place call and record too. But how can we store recording for each channel ? Can someone please…
0
votes
1 answer

How to use Twilio.Device to call a number

How to call to a phone number using Twilio.Device? I am doing the click to call feature for my widget. I am able to get the Capability token required in setting up the Twilio.Device. I am able also to connect the Twilio.Device to twilio by setup…
JMA
  • 974
  • 3
  • 13
  • 41
0
votes
1 answer

Twilio click to call and gather digit

I've developed a web that connect two persons into a call following this tutorial: https://www.twilio.com/docs/tutorials/click-to-call-node-express and everything is working fine. Now I need to gather 1 digit of the callee in order to execute a…
Fabrizio D'Ammassa
  • 4,729
  • 25
  • 32
0
votes
1 answer

Twilio calls blocked by multiple device instances that do not respect Twilio.Device.destroy()

I'm working on a Twilio app where a user will have a list of numbers in front of them at a public terminal. Some are SIP some are Traditional. A end user might push a button to call one individual on the list, have a conversation, and walk…
K. Rhoda
  • 181
  • 1
  • 15
0
votes
1 answer

Phone calling with twilio

Can I connect two phone numbers with twilio? Here's my explanation about my question. I'll call agent number with my twilio phone number. If the agent picks up then call client with my twilio phone number. Here's the goal. I want to connect agent…
0
votes
1 answer

Call forwarding with twimlets in Django App

I am implementing a Twilio call functionality in my Django app, where in I want to get a call to specified no, after the call is picked by a person it should connect the call to another phone no. This is what I have already implemented to get the…
0
votes
0 answers

Make Outgoing Call From Using Twilio API in Python

I tried to making outgoing call to end user using twilio python for communicating both user as normal call but somehow it will not worked.Suggestion would be great help. Thanks
0
votes
1 answer

(JQuery Mobile/ JavaScript) Mobile phone send sms at backend not working

Thank you for taking the time to read this post. Basically, I am trying to code a mobile app which one of its features requires making a mobile phone to send a message (local/overseas message) at the backend (without letting the "user" know). It's…
0
votes
1 answer

making a blank(non nil) tviRoom object for delegate function testing

I am creating a test case, which tests if the delegate function didDisconnectwithError can be called, for TVIroom class. for that I need to pass the delegate function a blankempty TVI room object. However the delegate function does not accept nil…
Arnold
  • 181
  • 3
  • 12