我正在Android上集成推送通知。
根据appcelerator article。
// notification setting
var deviceToken = null;
// Require the module
var CloudPush = require('ti.cloudpush');
// Initialize the module
CloudPush.retrieveDeviceToken({
success: deviceTokenSuccess,
error: deviceTokenError
});
// Enable push notifications for this device
// Save the device token for subsequent API calls
function deviceTokenSuccess(e) {
Ti.API.info("deviceTokenSuccess :" + e.deviceToken);
deviceToken = e.deviceToken;
}
function deviceTokenError(e) {
alert('Failed to register for push notifications! ' + e.error);
}
// Process incoming push notifications
CloudPush.addEventListener('callback', function (evt) {
alert("Notification received: " + evt.payload);
});
我需要让deviceToken将通知推送到android,但是这个脚本使用CloudPush,它需要'钛箭头服务'登录。
但是我想使用亚马逊SNS服务来推送消息而不是'箭头服务',并且不想使用Arrow服务。
(我已经完成了亚马逊SNS设置并在iOS中成功推送通知。)
如何在不使用cloudpush的情况下获取android deviceToken。
有可能吗?