Reputation: 1605
we are using phonegap cordova , node-gcm for sending push notification . Actually our mobile application is not completed it have login screen , so upon login successfully we send device toke to server . So we want that when we send push notification it opens the browser and redirects to the link , it is possible ?
Node Code
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);
});
So basically we wants to open the particular link in browser upon clicking of push notification . We receive push notifications in mobile but upon clicking it open the app
Upvotes: 0
Views: 1444
Reputation: 1605
We use window.open('http://www.kidzout.com', '_system');
to solve this problem . App is running in pause state and without opening the app it directly open the browser
Upvotes: 0