没有cloudpush的android的getDeviceToken

时间:2016-02-06 16:10:58

标签: android push-notification google-cloud-messaging titanium appcelerator

我正在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。

有可能吗?

1 个答案:

答案 0 :(得分:1)

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