我正在嘗試使用twiml來設置簡單的呼叫轉接應用程序。 我試圖完成的流程是;使用Twilio和Twiml將呼叫轉接到自定義號碼
- 呼叫twilio#
- 說提示索要電話號碼來撥打
- 撥號到電話號碼
讀它看起來相當的文檔只是爲了收集數;
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Gather action=「this is where the dial action goes」 timeout="10" finishOnKey="*">
<Say>Please enter the phone number and press *.</Say>
</Gather>
</Response>
這應該只是簡單地要求一個電話號碼,並將其記錄爲數字。
接下來的過程應該是使用撥號撥打這些數字,但這就是我有點失落的地方。我用過幾次撥號,但不知道如何將這兩個鏈接在一起。
<?xml version=」1.0″ encoding=」UTF-8″?>
<Response>
<Dial>
"the digits passed from gather"
</Number>
</Dial>
</Response>
理想我覺得很有道理的撥號命令進入行動=「」的收集部分,但我不知道這是可行的。 關於從哪裏出發的任何想法?