也许有人可以帮助我!我想从一个简单的Android应用程序向每个注册的设备发送推送通知。 (对每个人)。有一些工作示例如何使用PHP实现这一点,但我不知道如何向所有人(没有频道)发送推送通知给所有人?
到目前为止,我找到了这些信息,但它无法正常工作
我的频道是“”,目标是向所有设备发送推送!
ParseQuery pushQuery = ParseInstallation.getQuery();
pushQuery.whereEqualTo("channels", "");
ParsePush push = new ParsePush();
push.setQuery(pushQuery); // Set our Installation query
push.setMessage("Hello world!");
push.sendInBackground();
我已经改变了我的代码,但它仍然无效!
ParsePush.subscribeInBackground("bugatti", new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Log.d("com.parse.push", "successfully subscribed to the broadcast channel.");
} else {
Log.e("com.parse.push", "failed to subscribe for push", e);
}
}
});
ParseQuery pushQuery = ParseInstallation.getQuery();
pushQuery.whereEqualTo("channels", "bugatti");
ParsePush push = new ParsePush();
push.setQuery(pushQuery);
push.setChannel("bugatti");
push.setMessage("Hello world!");
push.sendInBackground();
如果有人能帮助我会好的!
答案 0 :(得分:1)
您只需启用"发送通知"。
享受!