Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在取消 Twilio Rest Api 的 SMS 功能。我的短信发送成功问题是当用户响应短信时,我必须在我的应用程序中捕获该响应并向用户发送确认电子邮件
我无法从应用程序 URL 捕获响应。请给我一些想法。
提前致谢
PHP中的示例应用程序展示了如何根据传入文本消息的正文构建关键字响应。
需要注意的重要一点是获取消息的Body请求参数,这很简单:
Body
/* Read the contents of the `'Body'` field of the Request. */ $body = $_REQUEST['Body'];
而不是'fromBody'。