我写过这个小测试应用程序来测试New ionic push,在后端我正在使用Android Google Cloud Messaging Service。我从前端的Android GCM获得了成功
data: Object
canonical_ids: 0
failure: 0
multicast_id: 8830892721591033000
results: Array[1]
success: 1
__proto__: Object
这是前端代码
app.run(function($ionicPlatform, $ionicPush,$http) {
$ionicPlatform.ready(function() {
$ionicPush.init({
"onNotification": function(notification) {
var payload = notification.payload;
console.log(payload);
console.log(notification);
},
"onRegister": function(data) {
console.log(data.token);
}
});
$ionicPush.register(function(data){
var reg = {
regId : data.token
};
$http.post('http://app.example.com/sendPushNot', reg)
.then(function(response){
console.log(response);
}, function (error){
console.log(error);
});
});
在我的后端
var message = new gcm.Message({
collapseKey: 'demo',
priority: 'high',
contentAvailable: true,
delayWhileIdle: true,
timeToLive: 3,
//restrictedPackageName: "somePackageName",
dryRun: false,
data: {
key1: 'message1',
key2: 'message2'
},
notification: {
title: "Hello, World",
icon: "ic_launcher",
body: "This is a notification that will be displayed ASAP."
}
});
console.log(message);
var sender = new gcm.Sender('AIzaSyB9Lz**********9mHJuH5if1m5k5JOVMw');
var regTokens = [];
regTokens.push(req.body.regId);
sender.send(message, { registrationTokens: regTokens }, function (err, result) {
if (err) {
console.error(err);
}
else {
console.log(result);
res.status(200);
res.set('Content-Type', 'text/html');
res.send(result);
}
});
但我仍然无法接收任何推送通知。我不明白为什么?
任何其他人发现任何事情。我在后端使用node-gcm
编辑编辑
问题可能出在服务器或前端的任何地方
我使用this缩小了问题的范围。现在使用它,因为没有有效负载,我能够看到控制台登录onNotification
监听器。这意味着我的监听器是正确的...部分因为我能够通过仅使用数据字段将数据从服务器发送到前端。
现在问题可能是Ionic.Push无法接收通知或者可能是node-gcm无法正确发送插件
看看我和这些badass插件之间的最终摊牌,你的呼吸。
答案 0 :(得分:0)
你能确认执行向服务器发送令牌的http请求吗?如果我没有弄错的话,在onRegister回调中通过gcm向手机发送推送通知会收到Android令牌:
app.run(function($ionicPlatform, $ionicPush,$http) {
$ionicPlatform.ready(function() {
$ionicPush.init({
"onNotification": function(notification) {
var payload = notification.payload;
console.log(payload);
console.log(notification);
},
"onRegister": function(data) {
console.log(data.token);
//works for android
var reg = { regId: data.token };
$http.post('http://app.example.com/sendPushNot', reg)
.then(function(response){
console.log(response);
}, function (error){
console.log(error);
});
}
});
$ionicPush.register(function(data){
//works for ios
var reg = {
regId : data.token
};
$http.post('http://app.example.com/sendPushNot', reg)
.then(function(response){
console.log(response);
}, function (error){
console.log(error);
});
});
答案 1 :(得分:0)
好的,伙计们,在我最后的摊牌后,我是赢家。我终于弄清楚了。我没有进入app_id
字段。这完全与离子有关,所以对于安卓人来说这不是真的。这是一个小问题。我之前看过源代码。我现在已经知道了。但无论如何要解决四天,最后才能解决问题。
如果评论中的任何内容不起作用,我会帮助你。
所以流程是这样的。
ionic config set dev_push false
ionic push --google-api-key AIzaSyB9L****************5if1m5k5JOVMw
ionic config set gcm_key 148*****5078
ionic config set app_id (some_alphanumeric_value found on ionic.io and is availble after you have done ionic io init)