为什么打开应用时不能收到来自react-native-fcm的通知?
这是我的有效载荷
const proState={};
proState.notiUID=recKey;
proState.notiPayload={
data: {
senderKey:senderKey,
id: senderKey+':chat',
type: 'chat'
},
notification: {
title: proState.senderSnap.fullname,
body: proState.lastmsg,
sound: 'default',
id: senderKey+':chat',
tag : senderKey+':chat',
priority : "high",
data: senderKey
},
};
const optionss = {
priority: "high",
show_in_foreground: true
};
return admin.messaging()
.sendToTopic(proState.notiUID, proState.notiPayload,optionss)我只会在应用程序最小化或关闭时收到通知
发布于 2018-07-02 10:54:31
你在android和ios这两个平台上都面临着同样的问题吗?如果你只在ios中遇到这个问题,那么不要担心ios不会在前台收到通知。这是ios的默认行为。
https://stackoverflow.com/questions/51125638
复制相似问题