• <small id='AO9mA'></small><noframes id='AO9mA'>

    • <bdo id='AO9mA'></bdo><ul id='AO9mA'></ul>

        <i id='AO9mA'><tr id='AO9mA'><dt id='AO9mA'><q id='AO9mA'><span id='AO9mA'><b id='AO9mA'><form id='AO9mA'><ins id='AO9mA'></ins><ul id='AO9mA'></ul><sub id='AO9mA'></sub></form><legend id='AO9mA'></legend><bdo id='AO9mA'><pre id='AO9mA'><center id='AO9mA'></center></pre></bdo></b><th id='AO9mA'></th></span></q></dt></tr></i><div id='AO9mA'><tfoot id='AO9mA'></tfoot><dl id='AO9mA'><fieldset id='AO9mA'></fieldset></dl></div>
      1. <tfoot id='AO9mA'></tfoot>
        <legend id='AO9mA'><style id='AO9mA'><dir id='AO9mA'><q id='AO9mA'></q></dir></style></legend>
      2. Firebase 云消息传递 sendToDevice 工作正常,但 sendMulticast 对于相同的令牌列表失败

        Firebase cloud messaging sendToDevice works properly but sendMulticast fails for the same list of tokens(Firebase 云消息传递 sendToDevice 工作正常,但 sendMulticast 对于相同的令牌列表失败)
          <bdo id='lWvf2'></bdo><ul id='lWvf2'></ul>
          1. <small id='lWvf2'></small><noframes id='lWvf2'>

              <legend id='lWvf2'><style id='lWvf2'><dir id='lWvf2'><q id='lWvf2'></q></dir></style></legend>
                <tbody id='lWvf2'></tbody>

                • <tfoot id='lWvf2'></tfoot>
                • <i id='lWvf2'><tr id='lWvf2'><dt id='lWvf2'><q id='lWvf2'><span id='lWvf2'><b id='lWvf2'><form id='lWvf2'><ins id='lWvf2'></ins><ul id='lWvf2'></ul><sub id='lWvf2'></sub></form><legend id='lWvf2'></legend><bdo id='lWvf2'><pre id='lWvf2'><center id='lWvf2'></center></pre></bdo></b><th id='lWvf2'></th></span></q></dt></tr></i><div id='lWvf2'><tfoot id='lWvf2'></tfoot><dl id='lWvf2'><fieldset id='lWvf2'></fieldset></dl></div>
                  本文介绍了Firebase 云消息传递 sendToDevice 工作正常,但 sendMulticast 对于相同的令牌列表失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  对于某些类型的消息,我想通过存储在我的实时数据库中的 FIRToken 与主题来定位用户.我使用 async/await 加载这些令牌,然后决定是否要将通知发送到主题而不是较小的用户列表.数据加载代码按预期工作.但奇怪的是,如果我使用 .sendMulticast(payload),列表中所有令牌的通知都会失败.另一方面,如果我使用 .sendToDevice(adminFIRTokens, payload) 通知会成功发送给我的所有用户.现在我的列表有 2 个令牌,使用 sendMulticast 我有 2 次失败,使用 sendToDevice 我有 2 次成功.我错过了 sendMulticast 应该做什么的重点吗?根据 文档:发送消息到多个设备:

                  For certain types of messages, I want to target users by FIRTokens vs topic, which are stored in my real-time database. I load these tokens with async/await and then decide if I want to send notifications to a topic vs a smaller list of users. The data loading code works as expected. But what's odd is that if I use .sendMulticast(payload), the notifications fail for all tokens in the list. On the other hand if I use .sendToDevice(adminFIRTokens, payload) the notification goes successfully to all my users. Right now my list has 2 tokens and with sendMulticast I have 2 failures and with sendToDevice I have 2 successes. Am I missing the point of what sendMulticast is supposed to do? According to the docs: Send messages to multiple devices:

                  REST API 和 Admin FCM API 允许您将消息多播到设备注册令牌列表.每次调用最多可以指定 500 个设备注册令牌.

                  The REST API and the Admin FCM APIs allow you to multicast a message to a list of device registration tokens. You can specify up to 500 device registration tokens per invocation.

                  所以两者都应该在逻辑上起作用.那么为什么一个失败而另一个工作呢?实际上,使用 sendToDevice 我在响应中得到了一个 multicastId

                  So both should logically work. Then why does one fail and the other work? In fact with sendToDevice I get a multicastId in the response!

                  以下是一些控制台输出:

                  Here are some console outputs:

                  1. sendToDevice:

                  Sent filtered message notification successfully: 
                  { 
                    results: 
                      [ 
                        { messageId: '0:1...45' }, 
                        { messageId: '16...55' } 
                      ], 
                      canonicalRegistrationTokenCount: 0, 
                      failureCount: 0, 
                      successCount: 2, 
                      multicastId: 3008...7000 
                  } 
                  

                  1. 发送多播:

                  List of tokens that caused failures: dJP03n-RC_Y:...MvPkTbuV,fDo1S8jPbCM:...2YETyXef 
                  

                  发送通知的云端功能:

                  functions.database
                    .ref("/discussionMessages/{autoId}/")
                    .onCreate(async (snapshot, context) => {
                      // console.log("Snapshot: ", snapshot);
                  
                      try {
                        const groupsRef = admin.database().ref("people/groups");
                        const adminUsersRef = groupsRef.child("admin");
                        const filteredUsersRef = groupsRef.child("filtered");
                        const filteredUsersSnapshot = await filteredUsersRef.once("value");
                        const adminUsersSnapshot = await adminUsersRef.once("value");
                        var adminUsersFIRTokens = {};
                        var filteredUsersFIRTokens = {};
                  
                        if (filteredUsersSnapshot.exists()) {
                          filteredUsersFIRTokens = filteredUsersSnapshot.val();
                        }
                        if (adminUsersSnapshot.exists()) {
                          adminUsersFIRTokens = adminUsersSnapshot.val();
                        }
                  
                        const topicName = "SpeechDrillDiscussions";
                        const message = snapshot.val();
                        const senderName = message.userName;
                        const senderCountry = message.userCountryEmoji;
                        const title = senderName + " " + senderCountry;
                        const messageText = message.message;
                        const messageTimestamp = message.messageTimestamp.toString();
                        const messageID = message.hasOwnProperty("messageID")
                          ? message.messageID
                          : undefined;
                        const senderEmailId = message.userEmailAddress;
                        const senderUserName = getUserNameFromEmail(senderEmailId);
                  
                        const isSenderFiltered = filteredUsersFIRTokens.hasOwnProperty(
                          senderUserName
                        );
                  
                        var payload = {
                          notification: {
                            title: title,
                            body: messageText,
                            sound: "default",
                          },
                          data: {
                            messageID: messageID,
                            messageTimestamp: messageTimestamp,
                          },
                        };
                  
                        if (isSenderFiltered) {
                          adminFIRTokens = Object.values(adminUsersFIRTokens);
                          // payload.tokens = adminFIRTokens; //Needed for sendMulticast
                          return (
                            admin
                              .messaging()
                              .sendToDevice(adminFIRTokens, payload)
                              // .sendMulticast(payload)
                              .then(function (response) {
                                if (response.failureCount === 0) {
                                  console.log(
                                    "Sent filtered message notification successfully:",
                                    response
                                  );
                                } else {
                                  console.log(
                                    "Sending filtered message notification failed for some tokens:",
                                    response
                                  );
                                }
                                // if (response.failureCount > 0) {
                                //   const failedTokens = [];
                                //   response.responses.forEach((resp, idx) => {
                                //     if (!resp.success) {
                                //       failedTokens.push(adminFIRTokens[idx]);
                                //     }
                                //   });
                                //   console.log(
                                //     "List of tokens that caused failures: " + failedTokens
                                //   );
                                // }
                  
                                return true;
                              })
                          );
                        } else {
                          payload.topic = topicName;
                          return admin
                            .messaging()
                            .send(payload)
                            .then(function (response) {
                              console.log("Notification sent successfully:", response);
                              return true;
                            });
                        }
                      } catch (error) {
                        console.log("Notification sent failed:", error);
                        return false;
                      }
                    });
                  

                  推荐答案

                  我认为这是使用不同负载结构的问题.

                  I think it's an issue of using a different payload structure.

                  这是旧版本(没有 iOS 特定信息):

                  This is the old one (without iOS specific info):

                  var payload = {
                      notification: {
                        title: title,
                        body: messageText,
                        sound: "default",
                      },
                      data: {
                        messageID: messageID,
                        messageTimestamp: messageTimestamp,
                      },
                    };
                  

                  而这是新版本(apns 有 iOS 特定信息)

                  Whereas this is the new version (apns has iOS specific info)

                  var payload = {
                      notification: {
                        title: title,
                        body: messageText,
                      },
                      data: {
                        messageID: messageID,
                        messageTimestamp: messageTimestamp,
                      },
                      apns: {
                        payload: {
                          aps: {
                            sound: "default",
                          },
                        },
                      },
                    };
                  

                  使用新结构,sendsendMulticast 都可以正常工作.这将无法发送或给出错误,例如有效载荷中不支持 apns 密钥.

                  With the new structure, both send and sendMulticast are working properly. Which would fail to send or give errors like apns key is not supported in payload.

                  新功能:

                  functions.database
                    .ref("/discussionMessages/{autoId}/")
                    .onCreate(async (snapshot, context) => {
                      // console.log("Snapshot: ", snapshot);
                  
                      try {
                        const groupsRef = admin.database().ref("people/groups");
                        const adminUsersRef = groupsRef.child("admin");
                        const filteredUsersRef = groupsRef.child("filtered");
                        const filteredUsersSnapshot = await filteredUsersRef.once("value");
                        const adminUsersSnapshot = await adminUsersRef.once("value");
                        var adminUsersFIRTokens = {};
                        var filteredUsersFIRTokens = {};
                  
                        if (filteredUsersSnapshot.exists()) {
                          filteredUsersFIRTokens = filteredUsersSnapshot.val();
                        }
                        if (adminUsersSnapshot.exists()) {
                          adminUsersFIRTokens = adminUsersSnapshot.val();
                        }
                  
                        // console.log(
                        //   "Admin and Filtered Users: ",
                        //   adminUsersFIRTokens,
                        //   " ",
                        //   filteredUsersFIRTokens
                        // );
                  
                        const topicName = "SpeechDrillDiscussions";
                        const message = snapshot.val();
                  
                        // console.log("Received new message: ", message);
                  
                        const senderName = message.userName;
                        const senderCountry = message.userCountryEmoji;
                        const title = senderName + " " + senderCountry;
                        const messageText = message.message;
                        const messageTimestamp = message.messageTimestamp.toString();
                        const messageID = message.hasOwnProperty("messageID")
                          ? message.messageID
                          : undefined;
                        const senderEmailId = message.userEmailAddress;
                        const senderUserName = getUserNameFromEmail(senderEmailId);
                  
                        const isSenderFiltered = filteredUsersFIRTokens.hasOwnProperty(
                          senderUserName
                        );
                  
                        console.log(
                          "Will attempt to send notification for message with message id: ",
                          messageID
                        );
                  
                        var payload = {
                          notification: {
                            title: title,
                            body: messageText,
                          },
                          data: {
                            messageID: messageID,
                            messageTimestamp: messageTimestamp,
                          },
                          apns: {
                            payload: {
                              aps: {
                                sound: "default",
                              },
                            },
                          },
                        };
                        console.log("Is sender filtered? ", isSenderFiltered);
                  
                        if (isSenderFiltered) {
                          adminFIRTokens = Object.values(adminUsersFIRTokens);
                          console.log("Sending filtered notification with sendMulticast()");
                          payload.tokens = adminFIRTokens; //Needed for sendMulticast
                          return admin
                            .messaging()
                            .sendMulticast(payload)
                            .then((response) => {
                              console.log(
                                "Sent filtered message (using sendMulticast) notification: ",
                                JSON.stringify(response)
                              );
                              if (response.failureCount > 0) {
                                const failedTokens = [];
                                response.responses.forEach((resp, idx) => {
                                  if (!resp.success) {
                                    failedTokens.push(adminFIRTokens[idx]);
                                  }
                                });
                                console.log(
                                  "List of tokens that caused failures: " + failedTokens
                                );
                              }
                              return true;
                            });
                        } else {
                          console.log("Sending topic message with send()");
                          payload.topic = topicName;
                          return admin
                            .messaging()
                            .send(payload)
                            .then((response) => {
                              console.log(
                                "Sent topic message (using send) notification: ",
                                JSON.stringify(response)
                              );
                              return true;
                            });
                        }
                      } catch (error) {
                        console.log("Notification sent failed:", error);
                        return false;
                      }
                    });
                  

                  这篇关于Firebase 云消息传递 sendToDevice 工作正常,但 sendMulticast 对于相同的令牌列表失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  quot;Status Code:200 OK (from ServiceWorker)quot; in Chrome Network DevTools?(“状态码:200 OK(来自 ServiceWorker)在 Chrome 网络开发工具中?)
                  How to set a header for a HTTP GET request, and trigger file download?(如何为 HTTP GET 请求设置标头并触发文件下载?)
                  Adding custom HTTP headers using JavaScript(使用 JavaScript 添加自定义 HTTP 标头)
                  SQL Query DocumentDB in Azure Functions by an integer not working(通过整数在 Azure Functions 中 SQL 查询 DocumentDB 不起作用)
                  Azure Functions [JavaScript / Node.js] - HTTP call, good practices(Azure Functions [JavaScript/Node.js] - HTTP 调用,良好实践)
                  Azure Functions - Import Custom Node Module(Azure Functions - 导入自定义节点模块)

                  <tfoot id='G5dkP'></tfoot>
                  • <bdo id='G5dkP'></bdo><ul id='G5dkP'></ul>
                        1. <i id='G5dkP'><tr id='G5dkP'><dt id='G5dkP'><q id='G5dkP'><span id='G5dkP'><b id='G5dkP'><form id='G5dkP'><ins id='G5dkP'></ins><ul id='G5dkP'></ul><sub id='G5dkP'></sub></form><legend id='G5dkP'></legend><bdo id='G5dkP'><pre id='G5dkP'><center id='G5dkP'></center></pre></bdo></b><th id='G5dkP'></th></span></q></dt></tr></i><div id='G5dkP'><tfoot id='G5dkP'></tfoot><dl id='G5dkP'><fieldset id='G5dkP'></fieldset></dl></div>

                        2. <legend id='G5dkP'><style id='G5dkP'><dir id='G5dkP'><q id='G5dkP'></q></dir></style></legend>

                          <small id='G5dkP'></small><noframes id='G5dkP'>

                            <tbody id='G5dkP'></tbody>