2013-11-25 92 views
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 

謝謝。

回答

2

Twilio在這裏的福音傳教士。我認爲這是不可能的,TwiMLBin只是託管靜態內容,所以在另一端你不能做任何與它交互的事情。

I.E.如果你將參數添加到TwiML中,它將會忽略它們並渲染TwiML。

有很多不同的方式可以讓你自己的服務器設置,如AWS,Heroku,EngineYard,還有更多!

希望這會有所幫助。