我是android开发的新手。我正在尝试开发一个应用程序,在该应用程序中,用户可以向运行相同应用程序的其他设备发送请求,并且应该向发送设备返回响应/通知。
我用Google搜索并发现可以使用GoogleCloudMessaging。但是所有的教程都说它可以用来从服务器向应用程序发送消息。我需要知道如何完成相反的操作,即从app向服务器发送消息..
请提供一些教程。
感谢任何帮助。
谢谢..
答案 0 :(得分:1)
如果要将数据发送到服务器,可以使用休息通信。 Here a tutorial
答案 1 :(得分:1)
步骤1:使用 HttpPost / HttpGet 从您的Android应用程序调用服务器端脚本* (REST api / Webserices) * / p>
第2步:等待来自服务器的响应并使用它。
注意:请勿忘记通过httppost将您的请求的所有必需数据从您的应用发送到服务器。
通过这些链接,这将对您有所帮助。
Get started with push notifications in Mobile Services
Android Push Notifications using Google Cloud Messaging (GCM), PHP and MySQL
Google Cloud Messaging GCM for Android and Push Notifications