0
我正在嘗試使用Pushwoosh插件pushwoosh-cordova-plugin
。 我按照給出的文檔here推送推送通知
我想通過我的後端服務註冊移動設備。即是利用/registerDevice
API
所以我的問題是:
1)我們需要下面的代碼?它究竟做什麼?
pushwoosh.onDeviceReady({
appid: "PUSHWOOSH_APP_ID",
projectid: "GOOGLE_PROJECT_NUMBER",
serviceName: "MPNS_SERVICE_NAME"
});
2)我們是否只有以下代碼段並從我的通知提供商Pushwoosh接收移動推送通知?
document.addEventListener('push-notification', function(event) {
var notification = event.notification;
// handle push open here
});