我如何在游戏中嵌入游戏? 我有以下Twiml xml:
$twiml = new Twiml();
$twiml->gather('gather',array());
$twiml->play('https://api.twilio.com/cowbell.mp3', array("loop" => 5));
$response = Response::make($twiml, 200);
$response->header('Content-Type', 'text/xml');
return $response;
必填结果:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Gather input="speech" action="/completed">
<Play loop="5">https://api.twilio.com/cowbell.mp3</Play>
</Gather>
答案 0 :(得分:1)
使用此:
$twiml = new Twilio\Twiml();
$gather = $twiml->gather(array('input' => 'speech', 'action' => '/completed'));
$gather->play('https://api.twilio.com/cowbell.mp3', array("loop" => 5));
$response = Response::make($twiml, 200);
$response->header('Content-Type', 'text/xml');
return $response;