我正在 Android 应用程序中搜索推送通知。我检查了“ Pushwoosh ”:以initPushwoosh
我看到的方法GOOGLE_PROJECT_ID
和PUSHWOOSH_APP_ID
.
function initPushwoosh() {
var pushNotification = window.plugins.pushNotification;
pushNotification.registerDevice(
{
projectid: "GOOGLE_PROJECT_ID",
appid : "PUSHWOOSH_APP_ID"
},
function(status) {
var pushToken = status;
console.warn('push token: ' + pushToken);
},
function(status) {
console.warn(JSON.stringify(['failed to register ', status]));
}
);
document.addEventListener('push-notification', function(event) {
var title = event.notification.title;
var userData = event.notification.userdata;
if(typeof(userData) != "undefined") {
console.warn('user data: ' + JSON.stringify(userData));
}
navigator.notification.alert(title);
});
}
我怎样才能得到这两个ID?或者有没有更好的方法来做到这一点?
我在 PhoneGap 文档中看到了通知,它是推送通知吗?
谢谢你。