如何使用短信呼叫我的页面?
我想在 JSP 中开发一个 Web 应用程序,用户可以在其中使用他们的手机号码发送他们的 ID,然后他们将获得总金额、余额等数据。 我不明白我该怎么做? 如果您可以提供任何 api 名称和示例,那对我来说将非常有用。
谢谢
I want to develop a web application in JSP ,in which a user can sent their id using their mobile number and after that they will get their data like total amount,balance etc.
I am not getting how can i do this?
If you can provide any api name and example that will be great for me.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在这里您可以查看如何从JAVA发送短信
Here you can check how to send sms from JAVA
要与 GSM 调制解调器(例如移动电话)交互,您可以使用 SMSLib。不过,由于 SMSLib 是一个 Java 库,因此您必须编写某种后端。
To interact with a GSM Modem (such as a mobile phone), you can use SMSLib. You will have to write some sort of backend though since SMSLib is a Java library.
使用 WAP 协议的 AFAIR 自动发送包含在 WAP 请求中的 MSISDN(电话号码)。这可能是一个起点(让客户端向您的服务器执行 WAP 请求)。
AFAIR using the WAP protocol automatically sends the MSISDN (phone number) included into the WAP request. This may be a starting point (get the client to execute a WAP request to your server).