当通过 onesignal 向 react-native 应用程序发送推送时,如果我在通知正文中包含数据字段,则需要将近 26 秒才能到达设备,但如果没有数据字段,它只会在 1-2 秒内到达。可能是什么原因?我尝试从节点、python 和 Go 后端发送。
这是我要发送的身体,
// Takes 1-2 seconds to reach
const notificationBody: any = {
headings: { en: "Heading" },
contents: { en: "Message"},
include_player_ids: playerIds,
priority: 10,
};
// Takes 26-30 seconds to reach
const notificationBodyWithData: any = {
headings: { en: "Heading with data" },
contents: { en: "Message"},
content_available: true,
data: data || {},
include_player_ids: playerIds,
priority: 10,
};
我尝试在 onesignal 的文档以及 git 问题中进行搜索,但找不到与此相关的任何内容。