我可以通过twilio发送带有聚集数字的附加数据。我想要实现的是,如果有人发送了一条说HELP的文字,我们会打电话给支持团队并告诉他们我们已收到短信,如果他们想和他们说话,请按1,如果他们按1,我们就可以从我们收到短信来拨打号码。
我正在检查twilio示例,它发送带有收集数字的POST,我可以发布其他详细信息,以便进行通话
<Response>
<Gather numDigits="1" action="callback.php" method="POST">//I would like to send phone number to be called in this post request
<Say>We have received a text for help ,to speak with the person press 1. </Say>
</Gather>
</Response>
答案 0 :(得分:2)
Twilio传道者在这里。
您可以在操作网址中传递更多数据作为查询字符串参数:
<Response>
<Gather numDigits="1" action="callback.php?phone=15555555555" method="POST">
<Say>We have received a text for help ,to speak with the person press 1.</Say>
</Gather>
</Response>
希望有所帮助。