我正在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,它需要“钛箭头服务”登录。

但是我想使用Amazon SNS服务而不是“箭头服务”来推送消息,并且不想使用Arrow服务。

(我已经完成了Amazon SNS设置,并在iOS中成功完成了推送通知。)

我如何在不使用cloudpush的情况下获取android deviceToken。

可能吗??

最佳答案

您可以使用https://github.com/morinel/gcmpush获取设备令牌

09-19 07:37