gpt4 book ai didi

javascript - Firebase FCM 错误 : 'InvalidRegistration'

转载 作者:数据小太阳 更新时间:2023-10-29 05:56:55 43 4
gpt4 key购买 nike

我目前正在尝试发送 PushNotificationDevice Group使用 FCMFirebase Cloud Functions的帮助下但是一旦发送了通知,它就会返回代码 200但失败了:

SUCCESS response= {
multicast_id: 8834986220110966000,
success: 0,
failure: 1,
canonical_ids: 0,
results: [ { error: 'InvalidRegistration' } ]
}

这是我用来发送此通知的代码...我错过了什么?

const options = {
method: 'POST',
uri: 'https://fcm.googleapis.com/fcm/send',
headers: {
'Authorization': 'key=' + serverKey,
},
body: {
to: groupId,
data: {
subject: message
},
notification: {
title: title,
body: body,
badge: 1,
},
content_available: true
},
json: true
};

return rqstProm(options)
.then((parsedBody) => {
console.log('SUCCESS response=', parsedBody);
})
.catch((err) => {
console.log('FAILED err=', err);
});

其中 JSON 值为 title , body , subject , messageString

最佳答案

在我的例子中,我将通知发送到主题(“topics/my-topic”)。我在主题开头缺少 / 前缀,所以我遇到了同样的问题。所以主题应该是 /topics/my-topic

可能有帮助!!

关于javascript - Firebase FCM 错误 : 'InvalidRegistration' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44035518/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com