我正在使用infobip向我的应用程序发送推送通知,我不得不承认它非常强大。 无论如何我有一个问题。 cordova插件是否正常工作?因为我的应用程序无法识别推送对象(显然插件已安装)。 另一个问题,我必须在我的应用程序的所有html页面中的.js文件中初始化插件,或者只在应用程序加载的第一个.js中调用初始化和注册方法吗? (index.js对我来说) 这些是一些代码行
var senderId1 = "", applicationId1, applicationSecret1;
function notificationListener(event, notification){
switch(event){
case ("onNotificationReceived"):
alert(notification.title);
break;
case ("onInvisibleNotificationReceived"):
// TODO your code here
break;
case ("onNotificationOpened"):
window.location.href = "promo.html";
break;
case ("onUnregistered"):
// TODO your code here
break;
case ("onRegistered"):
// TODO your code here
break;
case ("onError"):
// TODO your code here
break;
default:
// TODO your code here
break;
}
};
//inside the 'onDevideReady' function
if (getMobileOperatingSystem() == 'Android') {
senderId1 = "012345";
applicationId1 = "djdjdjdjdjdj";
applicationSecret1 = "0123456789abcd";
} else {
applicationId1 = "djdjdjdjdjdj";
applicationSecret1 = "0123456789abcd";
push.setBackgroundLocationUpdateModeEnabled(true);
}
//pushnotification
push.initialize(notificationListener);
var text = '{' +
'"regData": {' +
' "applicationId": "' + applicationId1 + '",' +
' "applicationSecret": "' + applicationSecret1 + '",' +
' "senderId": "' + senderId1 + '"' +
'}' +
'}';
var regData = JSON.parse(text);
push.register(regData);
push.enableLocation();
我在xCode中遇到的错误是(遗憾的是我无法上传图片:()
#import <UIKit/UIKit.h>
int main(int argc, char* argv[])
{
@autoreleasepool {
int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate"); //ERROR HERE
return retVal;
}
}
我需要尽快发布此应用,感谢您的帮助。
编辑:
我改变了一点我的代码
plug = window.localStorage.getItem("enable");
alert(plug);
if (plug == null) {
//pushnotification
push.initialize(notificationListener());
alert('here');
if (getMobileOperatingSystem() == 'Android') {
senderId1 = "902945349798";
applicationId1 = "ftscfg8eb5kr";
applicationSecret1 = "qowk5x0q93a30az";
} else {
applicationId1 = "ftscfg8eb5kr";
applicationSecret1 = "qowk5x0q93a30az";
//enable the background location
push.setBackgroundLocationUpdateModeEnabled(true);
}
alert('here2');
/*
var text = '{' +
'"regData": {' +
' "applicationId": "' + applicationId1 + '",' +
' "applicationSecret": "' + applicationSecret1 + '",' +
' "senderId": "' + senderId1 + '"' +
'}' +
'}';
var regData = JSON.parse(text);
*/
//register the push
push.register({
senderId: senderId1,
applicationId: applicationId1,
applicationSecret: applicationSecret1
});
alert('here3');
//enable the location
push.enableLocation();
window.localStorage.setItem('enable', '1');
alert('here4');
}
所以,在这种情况下,我保存一个局部变量,并且只有在我第一次启动应用程序时才设置推送参数。所有警报都运行良好,应用程序正常工作......但我无法收到通知:(
function notificationListener (event, notification){
switch(event){
case ("onNotificationReceived"):
alert(notification.title);
break;
case ("onInvisibleNotificationReceived"):
// TODO your code here
break;
case ("onNotificationOpened"):
window.location.href = "promo.html";
break;
case ("onUnregistered"):
// TODO your code here
break;
case ("onRegistered"):
// TODO your code here
break;
case ("onError"):
// TODO your code here
alert(notification);
break;
default:
// TODO your code here
break;
}
};
这是我的功能。当我使用infobip面板发送通知时,事件OnNotificationreceived将激活...但它不是这样的。即使onError不起作用,senderID,applicationID和applicationsecret也是正确的。
答案 0 :(得分:3)
也许你必须等待ios准备就绪。
我用这种方式初始化插件:
document.addEventListener("deviceready", initInfoBitPlugin, false);
它对我有用。
答案 1 :(得分:0)
只需初始化一次插件就足够了。
您是否在通知监听器中收到了onError
个事件?你在那里得到什么?
在onNotificationReceived
中,notification
参数的类型是什么?你可以JSON.stringify
来记录吗?
你能发一些关于这个问题的日志吗?