简体   繁体   English

普通的旧 TwiML `Dial` 动词和嵌套在 `Dial` 中的单个 `Number` 之间有什么区别吗?

[英]Is there any difference between a plain old TwiML `Dial` verb and a single `Number` nested in a `Dial`?

Other than one being slightly more verbose than the other, functionally is there any difference between these two TwiML blocks, assuming there is no additional configuration?除了一个比另一个稍微冗长之外,假设没有额外的配置,这两个 TwiML 块在功能上有什么区别吗? I was unable to find anything in the docs.我无法在文档中找到任何内容。

<?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Dial>111-111-1111</Dial>
</Response>
<?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Dial>
    <Number>111-111-1111</Number>
  </Dial>
</Response>

You are right, both TwiML files are equivalent.你是对的,两个 TwiML 文件是等价的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何自动接听和拨打9 - How to Auto Answer and Dial 9 Twilo如何处理拨号超时 - Twilo How to Handle the Timeout in Dial Twilio:来电等待转接号码(Dial)响应时的等待语音(Say) - Twilio: Waiting voice (Say) while the caller is waiting for a response from forwarded number (Dial) 使用golang gRPC客户端拨打多个IP地址 - Dial multiple IP addresses with golang gRPC client Kubernetes:无法验证 API 服务器的身份:tcp 拨号:连接:协议不可用 - Kubernetes: couldn't validate the identity of the API Server: tcp dial : connect : protocol not available docker 容器中的 gitlab-ce kas - 拨打 tcp i/o 超时 - gitlab-ce kas in docker container - dial tcp i/o timeout 2 codes.info/connected 之间有什么区别吗? - Is there any difference between the 2 codes .info/connected? AWS RDS 的 Terraform Postgresql 提供程序错误:“拨号 tcp 127.0.0.1:5432:连接:连接被拒绝” - Terraform Postgresql provider error for AWS RDS: "dial tcp 127.0.0.1:5432: connect: connection refused" calico-pod 在工作节点上不工作:拨打 tcp 10.172.0.2:10250: i/o 超时 - calico-pod not working on worker node : dial tcp 10.172.0.2:10250: i/o timeout credentials 和 accessKey 的区别 - Difference between credentials and accessKey
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM