我正在使用 pubnub 从服务器为 android 推送消息。当应用程序处于前台时,我会收到消息。但是如果应用程序在后台模式或锁定模式下处于非活动状态,我没有收到消息。如果应用程序在后台或不在最近的应用程序托盘中,如何获取 pubnub 消息?请帮帮我。谢谢。
var pubnub = new PubNub({
subscribeKey : 'sub-key',
publishKey : 'pub-key'
});
pubnub.addListener({
status : function(st) {
if (st.category === "PNConnectedCategory") {
}
},
message : function(m) {
var pushStatus = m.message;
console.log("Show Notification");
},
presence : function(ps) {
console.log(ps);
}
});
pubnub.subscribe({
channels : ['Channel']
});