与Web上的应用程序通信

时间:2012-08-25 23:17:29

标签: android web-services url web-applications

我想开发一个网站,允许我操作我的远程Android手机,我可以用什么作为链接2个应用程序的URL?我应该使用webservices吗?

3 个答案:

答案 0 :(得分:1)

您可以使用special links

触发特殊功能,如发送短信或拨打电话

Android和iOS的示例:

<a href="wtai://wp/mc;123456789">Call 123456789</a>
<a href="sms:123456789*[?body=MESSAGE]">Send SMS</a>

答案 1 :(得分:0)

我认为无法与本机应用程序直接通信。该网站可以将请求发送到服务器,而不是使用push notifications来触发本机应用程序中的更改。

答案 2 :(得分:0)

你有3个选择。

  1. RESTful services(they are like stripped down Web services)
  2. through json and php or whatever script you know
  3. Google's Cloud Messaging
  4. 由于您似乎渴望使用Web服务,我建议第一个。你会更容易