关闭应用程序后,可以从服务器调用通知功能吗?

时间:2019-04-30 09:42:24

标签: cordova notifications

我想知道我关闭应用程序后是否可以从服务器调用应用程序中的函数? 当我的服务器收到新消息时,就像调用本地通知功能。 我的服务器在nodejs中,我正在使用mongodb。 谢谢!

1 个答案:

答案 0 :(得分:0)

@Arzacks!

现在,您可以让我向您展示一些后端片段吗? (这只是参考样本)

  

此示例使用AWS SNS进行推送通知。 您应注意JSON PAYLOADS 。由于content-available参数,通知处理程序将作为后台进程注册到移动设备。在 前端 逻辑中,您应该处理cold-start事件处理程序。

...
// compose push message
apnsJSON = {
  aps: {
    alert: 'PUSH MSG FROM APPLE',
    sound: 'default',
    'content-available': '1',
    category: 'tabs.contact_pr', // param 4 client routing
  },
  // below are my custom params, ignore them
  target: '4',
  notId: '100204',
  notWhen: fn_current_moment()
};
gcmJSON = {
  data: {
    message: 'PUSH MSG FROM FIREBASE',
    sound: 'default',
    'content-available': '1',
    'force-start': '1',
    category: 'tabs.contact_pr', // param 4 client routing
    // below are my custom params, ignore them
    target: '4',
    notId: '100204',
    notWhen: fn_current_moment()
  }
};
var payload = JSON.stringify({
  default: 'TESTING PUSH MSG',
  APNS: JSON.stringify(apnsJSON),
  APNS_SANDBOX: JSON.stringify(apnsJSON),
  GCM: JSON.stringify(gcmJSON)
});
// AWS SNS publish now
// sending push to parent...
sns.publish({
  Message: payload,
  MessageStructure: 'json',
  TopicArn: String(topic.topicARN)
}, function(err, data) {
  if (err) {
    console.log(err);
  } else {}
  callback();
});
...