我遵循了教程,我可以通过Parse网站收到通知。但是,如果在我的应用程序中我打电话:
ParsePush push = new ParsePush();
push.setChannel("broadcast");//Edit: before I tried using the "" channel
push.setMessage("BUM!");
try {
push.send();
System.out.println("Push sent");
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我可以阅读打印“push sent”但是没有通知既没有到达我的设备也没有其他人(这些设备都订阅了“”频道,我可以在安装表中解析它)。任何人都可以帮助我理解问题所依赖的内容吗?
编辑:我正在尝试使用另一个频道“广播”,因为问题可能取决于默认“”频道的安全政策,但没有任何变化。