如何在Windows Phone 7中向服务器发送短信?
我需要从我的应用程序向网络服务器发送短信。场景是这样的:用户将填写表格并通过短信将信息发送到我们的网络服务器,因为我们需要使用我们数据库的应用程序的人员的详细信息。 我的应用程序是简单的文本编写应用程序。我该怎么做,因为我没有从事网络工作。
I have a requirement to send SMS to the web server from my application. The scenario is this: user will fill a form and send the information through the SMS to the our web server because we want the details of the person who is using the application for our database.
My application is simple text writing application.how can i do this because i haven't work for web.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想从应用程序发送短信,则需要使用 SMSComposeTask。用户将看到服务器的完整号码和消息的内容。用户将能够取消短信的发送。
If you want to send an SMS from your app you will need to use the SMSComposeTask. The user will see the full number of the server and the contents of the message. The user will be able to cancel the sending of the SMS.
那么您想向您的服务器发送 POST 请求,然后您的服务器将发送实际的短信,作为免费/付费服务?
只需将 HTTP POST 与 WebClient 结合使用即可。 Scott Hanselman 撰写了指南
So you want to send a POST request to your server, and then your server will send the actual SMS, as a free/paid service?
Simply use HTTP POST with the WebClient. Scott Hanselman wrote a guide