我正在尝试使用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
});
答案 0 :(得分:0)
是的,您需要此代码来注册您的应用并接收来自pushwoosh服务的通知。你可以从pushwoosh帐户2.appid来自谷歌api控制台获取所有这些细节1.appid
pushwoosh.onDeviceReady({
appid: "7BCF0-9F***",
projectid: "102568298****",
serviceName: "APPNAME"
});