1
我使用twimlbin來託管twiml php代碼片段。生成呼叫時,是否可以將外部php腳本中的數據傳遞給twimlbin片段?如何將數據傳遞給twimlbin?
在下面的代碼中,$ twimlbinurl是我的代碼片段的公共訪問網址。我可以通過查詢字符串參數或其他方法將其他數據傳遞給片段嗎?
// 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
謝謝。