我尝试在语音呼叫中重复一条消息作为python代码here这是在此处指导但不起作用,即根本没有暂停任何数字:长度<Pause length="3">
call = client.calls.create(
twiml = f'''
<Response>
<Gather>
<Say loop="{loop}">{message}</Say>
<Pause length="3"></Pause>
</Gather>
<Redirect>/gather.xml</Redirect>
</Response>
''',
to = to,
from_ = from_,
)