Soporte & Consultoria

Soporte Remoto y Consultoria skype : ambiorixg12.
Nota no se brinda ningun tipo de consulta o soporte fuera del blog de forma gratuita

sábado, 13 de enero de 2018

Twilio call





https://www.twilio.com/docs/guides/how-to-respond-to-incoming-phone-calls-in-php#create-php-responses-to-incoming-calls

https://www.twilio.com/docs/quickstart/php/twiml/say-response#hello-monkey-v10

https://www.twilio.com/docs/api/twiml

https://www.twilio.com/docs/quickstart/php/twiml/greet-caller-by-name#greet-caller-by-name


https://www.twilio.com/docs/guides/how-to-gather-user-input-via-keypad-in-php#handle-action-url-request-in-a-different-end-point

https://www.twilio.com/docs/quickstart/php/twiml/say-response#prerequisites

twilio verb
https://www.twilio.com/docs/api/twiml/say

https://support.twilio.com/hc/en-us/articles/223132827-What-languages-can-the-Say-verb-speak-



1 dial example




<?xml version="1.0" encoding="UTF-8"?>
<Response>
    <Dial timeout="10" record="true">415-123-4567</Dial>
</Response>
-------------------------------------------------------------------------------------------2 Hello php
<?php
    header("content-type: text/xml");
    echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
?>
<Response>
    <Say loop="2">This allows you to give customers options to leave the queue if their wait time is over the amount of seconds specified below</Say>
</Response>

----------------------------------------------------------------------------------
3 pure xml version<?xml version="1.0" encoding="UTF-8" ?>
<Response>
    <Say voice="alice" language="pt-BR" loop="2">Bom dia.</Say>
</Response>  

No hay comentarios:

Publicar un comentario