-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error - 12100 in placeCall #9
Comments
When making direct call between clients you will not need the Thanks |
Hi @bchen-twilio Error - 12100 Document parse failure Twilio was unable to parse the provided XML Document.
|
Have you created an application sid and followed the instructions provided https://github.com/twilio/voice-quickstart-swift#11-make-client-to-client-call? When you make a call using the
|
@kbagchiGWC am I right6 that If i want to make call between 2 clients I need to delete url parameter to stop invoke incoming() function |
@AntonAdamkovich You are correct the required params to make client to client calls are placeCall function uses Twilio REST API to make calls where |
|
I am getting this error. no twiml in response. |
fixed this error, but not getting below error <!doctype html5><style type="text/css">
Make sure that a web service is running on localhost:3000 and that it is a valid address. The error encountered was: dial tcp [::1]:3000: connect: connection refused |
MESSAGE |
Hi @wertpoiu To return a TwiML response, you will need to use the /makeCall endpoint and make sure you are returning a valid response. |
I removed url then below error occurred |
I want to make a simple call without greetings messages etc. can any one share your code because i tried multiple ways like called placeCall from my app and created Twiml app in which callback url defined to /makeCall call so it just say "Congratulations! You have received your first inbound call! Good bye." greetings from incoming function instead of communication between 2 users
other two functions are as below. `function makeCall(request, response) { const voiceResponse = new VoiceResponse(); if (!to) { `async function placeCall(request, response) { if (!to) { |
I try SwiftVoiceQuickstart when I call from the first device to the second one, after I heard the welcome phrase on the first device, on the second I see Alert with the ability to answer the call, but the first device receives Error - 12100 if the second device answers the call , then I hear the phrase with congratulations. I use node.js server. Please, tell me, how can I fix this?
My goal is to make a full-fledged call between two users.
The text was updated successfully, but these errors were encountered: