使用parse.com将应用程序发送到Android中的应用程序推送通知

时间:2015-04-10 09:50:46

标签: android eclipse parse-platform push-notification

我使用parse.com在android中创建了一个应用程序来实现推送通知。当我触发parse.com中的按钮时,我会收到从服务器到我的设备的通知

现在我的问题是如何使用parse.com将相同的通知从一个设备发送到另一个设备

1 个答案:

答案 0 :(得分:-1)

ParsePush push = new ParsePush();
push.setChannel("Giants");
push.setMessage("The Giants just scored! It's now 2-2 against the Mets.");
push.sendInBackground();
相关问题