我目前正在开发用户交互式 Twilio TwiLM。 这是我的 TwiLM,当超时时,它就挂断了电话。 我什至不确定这在 Twilio 中是否可行,但我可以在超时时保持重复以一遍又一遍地调用操作(URL)吗?
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Gather numDigits="1" timeout="10" action="twilio_handler.php">
<Say voice="alice">Please press 1 to continue</Say>
</Gather>
</Response>
谢谢。
这里是 Twilio 布道者。
如果
<Gather>
超时,Twilio 将在文档中查找下一个要执行的 TwiML 动词,因此如果您想重复提示,可以使用 <Redirect>
动词将 Twilio 重定向回同一个 TwiML :
<?xml version="1.0" encoding="UTF-8"?>
<!-- page located at http://example.com/gather_hints.xml -->
<Response>
<Gather action="/process_gather.php" method="GET">
<Say>Enter something, or not</Say>
</Gather>
<Redirect method="GET">
/gather_hints.xml
</Redirect>
</Response>
您可以在我们的网站上找到此示例代码以及有关
<Redirect>
的更多信息。
希望有帮助。