我正在寻找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文档中,它是推送通知?
谢谢。