自动发送确认短信

发布于 2024-09-04 20:19:14 字数 145 浏览 11 评论 0原文

我希望这能得到回应。

假设 A 以某种语法向短代码发送短信。如何在确定A收到的短信语法正确后,自动向A的手机发送确认短信(“您的信息已成功接收!”)?当谈到短信时,我是一个完全的新手 - 所以如果有人可以描述可以实现这一点的整个端到端流程/架构,我将不胜感激!

I hope this gets a response.

Say Person A sends an SMS to a shortcode in a certain syntax. How could a confirmation SMS be sent to Person A's mobile phone automatically ("Your message has been received successfully!"), after determining that the SMS received from Person A is in the correct syntax? I'm a total newbie when it comes to SMS - so if anyone could describe the entire end-to-end process/architecture that could make this happen, I'd be grateful!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酷到爆炸 2024-09-11 20:19:14

您必须找到一个网关提供商,使用定义的 API 来为您处理消息的接收和发送,并以您选择的语言与脚本/应用程序进行通信。

您通常会通过网关提供商定义的号码接收消息。传入消息将触发对您定义的 URL 的调用。该 URL 后面通常是一个脚本,然后执行所需的操作(例如解析消息并通过网关提供商发送自动响应 SMS。)

与 SMS 网关相关的问题:

You'd have to find a gateway provider who handles the receiving and the sending of messages for you using a defined API talking to a script/application in the language of your choice.

You usually receive messages on a number defined by the gateway provider. Incoming messages will trigger a call to a URL defined by you. Behind that URL will usually be a script that then performs the desired actions (e.g. parsing the message and sending an automated response SMS through the gateway provider.)

SO questions related to SMS Gateways:

三寸金莲 2024-09-11 20:19:14

BulkSMS 为您提供了发送移动终止 (MT) 消息和处理移动始发 (MO) 消息接收的功能。

您可以请求一个短代码,然后您的用户将 MO 发送到该代码。然后可以通过简单的 HTTP 请求将消息转发到您的 Web 服务器。然后,您的应用程序通过调用 BulkSMS 的 MT API 来确定合适的响应并通过 SMS 进行回复。

可能存在适用的限制和立法,具体取决于您所在的位置、您的用户所在的位置以及消息所通过的网络。他们也可以在这里提供帮助。

国际来电号码 http://www.bulksms.com/int/w/solutions_incoming.htm

通过 HTTP 接收消息 http://www.bulksms.com /int/docs/eapi/reception/http_push/

发送 API http:// www.bulksms.com/int/docs/eapi/

南非短代码 http://bulksms.2way.co.za/w/solutions_psms.htm

希望这有帮助

BulkSMS provides facilities for you to both send mobile terminating (MT) messages and handle receipt of mobile originating (MO) messages.

You can request a short code, which your users then send MOs to. The message can then be relayed, via a simple HTTP request, to your web server. You application then determines a suitable response and replies via SMS by calling the MT API of BulkSMS.

There may be restrictions and legislation applicable, depending on where you are, where your users are and the networks the messages are passing through. They can provide assistance here too.

International incoming numbers http://www.bulksms.com/int/w/solutions_incoming.htm

Receiving messages via HTTP http://www.bulksms.com/int/docs/eapi/reception/http_push/

Sending API http://www.bulksms.com/int/docs/eapi/

Short codes in South Africa http://bulksms.2way.co.za/w/solutions_psms.htm

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文