解析推送通知发送数据

时间:2018-07-27 22:52:05

标签: android push-notification parse-server

我正在尝试通过解析推送通知发送有效载荷中的数据。

Parse.Push.send({
   where: pushQuery,      // for sending to a specific channel
   data: payload,
   }, { success: function() {
   console.log("#### PUSH OK");
   }, error: function(error) {
   console.log("#### PUSH ERROR" + error.message);
   }, useMasterKey: true});

   response.success('success');
});

在有效负载中,我存储了customData字段。如何在自定义广播接收器的onReceive()中访问此字段;

1 个答案:

答案 0 :(得分:0)

如果您的结果是捆绑包,则可能应该在Android App中使用它

1