我正在尝试接听电话并根据用户的输入拨回一位数,这是否可以用twilio进行?
编辑:感谢downvote,如果您知道twilio API,您会知道这是一个有效的问题。
答案 0 :(得分:3)
Twilio开发者传道者在这里。
使用<Gather>
收集用户输入后,您可以使用包含<Play digits="1">
动词的Twiml进行回复,以便在通话过程中播放DTMF音。
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Gather action="/process_gather" method="GET">
<Say>
Please enter a digit
</Say>
</Gather>
</Response>
在/process_gather
,您的服务器会回复:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Play digits="digit to play..."></Play>
</Response>
如果我能进一步帮助,请告诉我!