我希望能够在Android上使用Titanium和Arrow Push发送推送通知。
我已按照此处的说明操作:
Subscribing to push notifications
我的简单代码如下:
var CloudPush = require('ti.cloudpush');
var deviceToken = null;
// Works fine
CloudPush.retrieveDeviceToken({
success: function () {
deviceToken = e.deviceToken;
alert('deviceToken: ' + deviceToken);
subscribeToChannel();
},
error: function () {
alert('Failed to register for push notifications! ' + e.error);
}
});
// Never runs!!!
CloudPush.addEventListener('callback', function (evt) {
Ti.API.info('New notification!');
alert("Notification received: " + evt.payload);
});
// Works fine
function subscribeToChannel () {
Cloud.PushNotifications.subscribeToken({
device_token: deviceToken,
channel: 'general',
type: Ti.Platform.name
}, function (e) {
if (e.success) {
alert('Subscribed');
} else {
alert('Error:\n' + ((e.error && e.message) || JSON.stringify(e)));
}
});
}
上述大部分代码与文档类似。代码的订阅方面似乎完全正常,因为用户的设备也出现在Appcelerator Dashboard的设备部分。
但是,当涉及发送通知时,从Appcelerator信息中心,我的Android设备旁边会显示“失败”字样。
突出显示“?”时的完整错误消息图标如下:
异常类型:GCM;错误代码:3103;错误信息: RegistrationId(s)为null或空; Catched Exception:论证不能 是空的
我在http://docs.appcelerator.com/arrowdb/latest/#!/guide/troubleshooting上看到了这个错误,所有内容都是:
GCM客户端提供了空或空注册ID。这个错误是 如果您使用的是Modules.CloudPush模块,则不常见。
哪个没用。
我做错了什么?这是加速器方面的错误。
答案 0 :(得分:1)
原来我的代码很好。我使用的凭据却不正确。请在此处查看我的其他相关问题:
Appcelerator/ Titanium: Getting Android credentials to push notifications
文档需要更新。
答案 1 :(得分:0)
我几乎不是推特专家,但我将你所拥有的内容与我在其中一个应用中的内容进行了比较。
非常确定您需要将deviceToken发送到subscribeToChannel函数。
尝试更改此内容 -
function subscribeToChannel () {
到此 -
function subscribeToChannel (deviceToken) {
然后将令牌添加到此处的调用 -
subscribeToChannel (deviceToken);
请告诉我这是否适合您。
-Jon
答案 2 :(得分:0)
在subscribeToChannel()
功能上,您应该使用type : 'gcm'
代替type: Ti.Platform.name
这是我为Android推送创建的commonJS模块:
function ACSPush(_callback) {
var debug_mode = true;
var Cloud = require('ti.cloud');
var CloudPush = require('ti.cloudpush');
CloudPush.enabled = true;
var deviceToken;
CloudPush.retrieveDeviceToken({
success : function deviceTokenSuccess(e) {
if(debug_mode)
Ti.API.info('Device Token: ' + e.deviceToken);
deviceToken = e.deviceToken;
if(Ti.App.Properties.getString("deviceToken") != deviceToken.toString()){
defaultSubscribe();
};
},
error : function deviceTokenError(e) {
if(debug_mode)
Ti.API.info('deviceTokenError.. :( ' + e.error);
}
});
function defaultSubscribe() {
Cloud.PushNotifications.subscribeToken({
channel : 'MyChannel',
device_token : deviceToken,
type : 'gcm'
}, function(e) {
if(e.success) {
if(debug_mode)
Ti.API.info("Success registerForPushNotifications");
Ti.App.Properties.setString("deviceToken", deviceToken.toString());
} else {
if(debug_mode)
Ti.API.info('Error:\n' + ((e.error && e.message) || JSON.stringify(e)));
};
});
};
CloudPush.addEventListener('callback', function(evt) {
var payload = JSON.parse(evt.payload);
if(debug_mode){
Ti.API.info("Received a push notification\nPayload:\n" + JSON.stringify(evt.payload));
Ti.API.info("payload: " + payload);
};
_callback(payload);
});
CloudPush.addEventListener('trayClickLaunchedApp', function(evt) {
if(debug_mode)
Ti.API.info('Tray Click Launched App (app was not running)');
});
CloudPush.addEventListener('trayClickFocusedApp', function(evt) {
if(debug_mode)
Ti.API.info('Tray Click Focused App (app was already running)');
});
};
module.exports = ACSPush;
显然,您必须先配置Android推送服务http://docs.appcelerator.com/platform/latest/#!/guide/Configuring_push_services-section-src-37551713_Configuringpushservices-ConfiguringpushservicesforAndroiddevices