点击Android手机中的推送通知后打开网站链接

时间:2015-10-01 11:25:39

标签: node.js cordova push-notification phonegap-plugins

我们使用phonegap cordova,node-gcm发送推送通知。实际上我们的移动应用程序没有完成它有登录屏幕,所以登录成功后我们将设备发送到服务器。所以我们希望当我们发送推送通知时打开浏览器并重定向到链接,这是可能的吗?

节点代码

var gcm = require('node-gcm');
var message = new gcm.Message();

//API Server Key
var sender = new gcm.Sender('ccxxxcdddd');
var registrationIds = [];

sender.send(message, registrationIds, 4, function (a,result) {

    console.log("ok",a);
    console.log("result",result);

});

所以基本上我们想在点击推送通知时打开浏览器中的特定链接。我们会在移动设备上收到推送通知,但点击后会打开应用

1 个答案:

答案 0 :(得分:0)

我们使用window.open('http://www.kidzout.com', '_system');来解决此问题。应用程序正处于暂停状态,无需打开应用程序即可直接打开浏览器