我正在用Expo开发一个本机应用程序。我想通过Firebase Cloud Messages向设备发送推送通知。 当我从NodeJs推送通知时,设备始终会收到在新消息之前发送的消息。你有什么建议吗?
这是我的发件人:
const fetch = require('node-fetch');
fetch('https://fcm.googleapis.com/fcm/send', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `key=xxx`,
},
body: JSON.stringify({
to: token,
priority: 'high',
data: {
experienceId: '@username/project',
message: 'test',
},
}),
})
感谢您的支持