How to play hold music when phone call is waiting for an answer client in Twiml
问题 I'm building a call system with Twilio Twiml where a user calls to my Twilio number and needs to enter a code to be attended: callsip.php <?php echo header('content-type: text/xml'); echo '<?xml version="1.0" encoding="UTF-8"?>'; ?> <Response> <Play>https://mywebsite.com/welcome.mp3</Play> <Gather numDigits="11" action="myfile.php"> <Say voice="alice">Please enter your code</Say> </Gather> </Response> After enter the code, the call goes to Twilio clients: myfile.php <?php echo header('content