Closed meet2011 closed 3 years ago
@meet2011
Did "Mit12" and "Mit13" register successfully to receive incoming call? Can you confirm you have followed the steps described here https://github.com/twilio/voice-quickstart-android?
Please share the call sid of the outgoing call that did not reach the callee.
Thanks.
Yes both identities were successfullly registered.
I have this Call SID CA79f4c3df89cee01710531a9f411b0ed7
I can share the screenshot from TwiML->Call Logs
Your TwiML it is malformed and resulted in Error 13224 Below is the Twiml that was sent :
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial callerId="client:quick_start">Mitesh1113
<Client>Mitesh1113</Client>
</Dial>
</Response>
It should be:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial callerId="client:quick_start">
<Client>Mitesh1113</Client>
</Dial>
</Response>
I'm following PHP sample that's already in the github. Is that wrong or I'm looking at wrong code?
Please look now.
Call SID CAf066ba11cdcbe5c2add3740e6a445db5
Why there are two logs at the same time? Please check the attached screenshot.
I am still not able to get calls, it keeps on ringing.
Thanks
@kbagchiGWC Can you tell what's wrong in above request?
@meet2011
Checked the backend, the notification was sent to he device registered with client:Mitesh1113
identity. SENT
status as payload.latest_state
indicates it was sent successfully by Twilio. However, we did not see any incoming events in the voice-insights which means that it was not received ny a device.
Please check if you are using the correct google-services.json
file and the corresponding credential sid.
Do you mean if push is not received then there won't be any incoming call?
@meet2011 - incoming call notification is delivered through push notification. If your app is not correctly setup to receive push notification, incoming call will not work.
Please follow the step by step getting started guide and let us know if you have any questions.
For android sdk questions please create an issue here.
I'm using android SDK to program voice to voice call using internet with the help of sample demo. Here are the steps that I have followed
Both the steps works but i never get call on either of devices.
I have also set TwiML code on our server using PHP example and there is no error but it doesn't work. If i input phoneNumber instead of "Mit13" i get phone call not internet call.
Please suggest what should be corrected to resolve the problem.