使用Android中的Parse向多个用户发送推送通知

时间:2014-05-22 05:35:09

标签: android parse-platform

我想使用解析后端向多个用户发送推送通知。我可以在不创建频道的情况下定位具有Facebook ID的朋友吗?(在我的应用程序中我集成了Facebook)

如果不可能,请发送创建频道的代码

1 个答案:

答案 0 :(得分:1)

Parse具有不同的可能性,具体取决于您拥有的帐户类型。我假设您有免费的,因此您无法使用此类帐户向特定或多个用户发送推送通知。但是您可以通过网站控制器将它们发送给iOS或Android用户,这是您使用免费帐户的唯一选择。

我实际上鼓励你使用频道这样做。我假设您已经按照解析网站(https://parse.com/docs/android_guide

中的说明进行了正确的初始化
// Create our Installation query
ParseQuery pushQuery = ParseInstallation.getQuery();
pushQuery.whereEqualTo("channels", "Giants"); // Set the channel
pushQuery.whereEqualTo("scores", true);

// Send push notification to query
ParsePush push = new ParsePush();
push.setQuery(pushQuery);
push.setMessage("Giants scored against the A's! It's now 2-2.");
push.sendInBackground();

我最终建议您阅读本指南:https://parse.com/docs/push_guide#sending-queries/Android