1

我想配置短信网关。我的情况是:

我们有一个注册学生的名单。每个人都被分配了一名导师。他们必须获取有关其导师的信息,例如导师姓名和联系方式等。

我希望他们向服务器发送格式化的短信,服务器通过短信向他们提供请求的信息。

请告诉我需要什么东西?基础设施?任何可用于测试我的应用程序的演示服务器?

我将在 PHP 中实现它

谢谢

4

2 回答 2

1

在你继续自己实现某些东西之前,我建议你检查已经做得很好的服务。也许你可以使用它们?Twilio就是这样一种易于使用的服务。

于 2013-06-13T05:57:57.800 回答
1

Have you seen Twilio's REST API for SMS already? https://www.twilio.com/sms/api. That will save you lots of time configuring own GSM modem firmware and maintaining own SMS transactions. With 3rd party SMS service provider you can just focus on your client app such as sending back tutor's profile to the provider and the provider will carry your message push it back to the student's mobile number.

Of course the old way is that everything (data and GSM software) sits within our own network. I used to have HTC's GSM model like 7 years ago) with my J2ME apps for Nokia, HTC and Motorola smartphones. But nowadays, you have lots or cheaper and better options. Even Android phones can be used as bare bones GSM modem already :D

Enjoy!

于 2013-12-18T21:47:51.483 回答