解析:从app发送推送通知

时间:2013-11-23 06:50:02

标签: android parsing push-notification parse-platform

我想知道如何使用我的应用程序直接从我的Android应用程序发送解析推送通知给evryone。有可能这样做吗?

2 个答案:

答案 0 :(得分:13)

如果您想使用Parse,请转到解析信息中心,然后您会看到推送设置,您将在此处找到此客户端推送设置。

ParsePush push = new ParsePush();
String message = "Client message" + Integer.toString(i++);
push.setChannel("Channel Name");
push.setMessage(message);
push.sendInBackground();

答案 1 :(得分:1)

如@Dmitry所述,您可以从客户端发送推送通知

但解析强烈建议不要使用该功能[安全漏洞问题]

Parse开发人员推荐" 云代码"从您的应用向其他用户发送推送通知。

请阅读此内容 http://blog.parse.com/learn/engineering/the-dangerous-world-of-client-push/