我试图为Android& amp;中的解析推送通知找到正确的离子插件iOS平台。
我的要求是:接收解析推送通知(在Android和iOS中)。
我试过这个解析推送插件: https://github.com/avivais/phonegap-parse-plugin
在app.js中:
run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
if(window.ParsePushPlugin){
ParsePushPlugin.subscribe('SampleChannel', function(msg) {
alert(msg);
}, function(e) {
alert('error'+e);
});
ParsePushPlugin.getInstallationId(function(id) {
// note that the javascript client has its own installation id,
// which is different from the device installation id.
alert("device installationId: " + id);
}, function(e) {
alert('error' +e);
});
ParsePushPlugin.getSubscriptions(function(subscriptions) {
alert(subscriptions);
}, function(e) {
alert('error'+e);
});
}
当我在Android设备上编译我的应用程序时,警报工作! 但在我的Parse Collection(名为'安装'的集合)中,没有出现任何新内容。没有存储行!
有人可以帮助我吗?
答案 0 :(得分:0)
不要使用Parse,它会消失,你可以在parse.com上查看。相反,请使用OneSignal。