GCM 推送通知,其中消息从移动设备推送到 GCM 服务器
Posted
技术标签:
【中文标题】GCM 推送通知,其中消息从移动设备推送到 GCM 服务器【英文标题】:GCM Push Notification whereby Message is Push From Mobile To GCM Server 【发布时间】:2014-08-06 04:21:16 【问题描述】:你们中的任何一个都可以提供 GCM 推送通知的代码,其中消息从移动设备推送到 GCM 服务器。我已经从 GCM 服务器到 Mobile 和它的工作,但我不知道反之亦然.. 任何人都可以提供帮助吗? 谢谢你。我很感激。
【问题讨论】:
【参考方案1】:你可以使用
Bundle data = new Bundle();
data.putString("my_message", "Hello World");
data.putString("my_action", "com.google.android.gcm.demo.app.ECHO_NOW");
String id = Integer.toString(msgId.incrementAndGet());
gcm.send(SENDER_ID + "@gcm.googleapis.com", id, data);
您可以参考开发者 http://developer.android.com/google/gcm/client.html#sample-send
【讨论】:
谢谢@calvinfly,但我应该在哪里插入这段代码?以上是关于GCM 推送通知,其中消息从移动设备推送到 GCM 服务器的主要内容,如果未能解决你的问题,请参考以下文章