将 FCM 从 Firestore 发送到 Android 应用程序需要什么?



这是我到目前为止所拥有的:

  1. 在Android上,用户登录并更改Firestore文档。
  2. Firestore 文档已更新
  3. 云功能被触发
  4. 云功能使用设备令牌向设备发送消息
  5. 在Android上,FirebaseMessagingService应该会收到消息,但不会。

我怀疑我缺少的部分是设备令牌注册。由于我的服务器是 Firebase,并且我的用户通过 Firebase 登录,我是否需要执行其他步骤将设备令牌发送到 Firebase,以便我的云函数可以访问它?换句话说,我是自己将它们存储在 Firestore 中,还是作为由 Firebase 控制的某些"用户"集合的一部分成为标准?为了获得更多上下文,我从我在网上找到的一个示例中调整了我的云函数:

云功能:

exports.coolThingIsHappening = functions.firestore.document("coolstuf/{userId}")
.onWrite(async (change, context) => {
console.log("coolThingIsHappening is triggered");
const userId = context.params.userId;
const after = change.after.data();
const payload = {
data: after
}
const tokensSnapshot = await admin.database()
.ref(`/users/${userId}/notificationTokens`).once('value');
if (!tokensSnapshot.hasChildren()) {
const logMsg = `user ${userId} has no notification tokens.`
console.log(logMsg)
return logMsg;
}
console.log("FCM tokens found")
const tokens = Object.keys(tokensSnapshot.val());
const response = await admin.messaging().sendToDevice(tokens, payload);
const tokensToRemove: Promise<void>[] = [];
console.log(`response results: ${response.results.length}`)
response.results.forEach((result, index) => {
console.log(`fcm sent: ${result.messageId}`)
const error = result.error;
if (error!.code === 'messaging/invalid-registration-token' ||
error!.code === 'messaging/registration-token-not-registered') {
tokensToRemove.push(tokensSnapshot.ref.child(tokens[index]).remove());
}
});
return Promise.all(tokensToRemove);
});

编辑

我已继续将 fcm 令牌保存到 Firestore。任何知道如何将上面的代码从database中心转换为以firestore为中心的代码。我遇到了一些麻烦。安卓代码:

val data = mapOf("token" to it)
val collectionName = "users/${uid}/deviceTokens/"
FirebaseFirestore.getInstance().collection(collectionName).document()
.set(data)`

如果要向设备发送消息,则需要编写代码以在应用中收集设备令牌,并存储它们或将其发送到后端。 这一切都不会自动发生。

我知道这个问题被问到现在已经一年了,但它可能会对某人有所帮助。

要向设备发送通知,您应该在Firestore中创建另一个集合,在其中存储来自用户的所有令牌,然后您可以从那里获取令牌以向任何人发送通知。

相关内容

  • 没有找到相关文章

最新更新