验证存储的Firebase FCM令牌

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了验证存储的Firebase FCM令牌相关的知识,希望对你有一定的参考价值。

我们在iosandroid中开发了一个应用程序,它将FCM令牌存储在数据库中,以便根据用户配置发送PUSH通知。

用户安装应用程序并且每个设备的令牌都存储在数据库中,因此我们想知道这些令牌中的哪些令牌无效,因为该应用程序已被卸载。

另一方面,我们使用JSON通过网站发送通知。是否有任何限制(我的意思是,JSON请求中的元素是否有限制)?

非常感谢你!

答案

我最近注意到step 9 in the Cloud Functions codelab使用从FCM API获取的响应来从其数据库中删除无效的注册令牌。

那里的相关代码:

// Get the list of device tokens.
return admin.database().ref('fcmTokens').once('value').then(allTokens => {
  if (allTokens.val()) {
    // Listing all tokens.
    const tokens = Object.keys(allTokens.val());

    // Send notifications to all tokens.
    return admin.messaging().sendToDevice(tokens, payload).then(response => {
      // For each message check if there was an error.
      const tokensToRemove = [];
      response.results.forEach((result, index) => {
        const error = result.error;
        if (error) {
          console.error('Failure sending notification to', tokens[index], error);
          // Cleanup the tokens who are not registered anymore.
          if (error.code === 'messaging/invalid-registration-token' ||
              error.code === 'messaging/registration-token-not-registered') {
            tokensToRemove.push(allTokens.ref.child(tokens[index]).remove());
          }
        }
      });
      return Promise.all(tokensToRemove);
    });
  }
});

我很快检查了同样的方法也用在Cloud Functions sample for sending notifications

以上是关于验证存储的Firebase FCM令牌的主要内容,如果未能解决你的问题,请参考以下文章

注销Firebase经过身份验证的用户后写入Firestore

Firebase 云消息传递 - 如何验证令牌?

Firebase FCM 令牌和给每个用户的自定义消息

Flutter:如何在 Flutter 中为 Firebase (FCM) 注册令牌订阅ToTopic

Firebase (FCM) 注册令牌

Firebase 中的 FCM 令牌是啥?