我正在使用twimlbin来托管twiml php代码的片段。是否可以在生成呼叫时将外部php脚本中的数据传递到twimlbin片段?
在以下代码中,$ twimlbinurl是我的代码段的公开可访问的网址。我可以通过查询字符串args或其他方法将其他数据传递给代码段吗?
// Initiate a new outbound call
$call = $client->account->calls->create(
$phonefrom, // The number of the phone initiating the call
$phoneto, // The number of the phone receiving call
$twimlbinurl); // The URL Twilio will request when the call is answered
感谢。
答案 0 :(得分:2)
Twilio Evangelist在这里。我不认为这是可能的,TwiMLBin只是托管静态内容,所以你不能在另一端做任何与它交互的事情。
即。如果你向TwiML添加参数,它将忽略它们并渲染TwiML。
您可以通过许多不同的方式来设置自己的服务器,例如AWS,Heroku,EngineYard以及许多其他设备!
希望这有帮助。