gpt4 book ai didi

firebase - FCM : Message to multiple registration ids limit?

转载 作者:行者123 更新时间:2023-12-03 06:34:16 27 4
gpt4 key购买 nike

根据我发现的这句话:

  • registration_ids – Type String array – (Optional) [Recipients of a message] Multiple registration tokens, min 1 max 1000.

这是我可以发送一条消息的设备 token 的实际限制吗?主题消息也有同样的限制吗?

例如:

{
"to": [reg_token_01, reg_token_02, ..., reg_token_1000],
"priority": "high",
"data": {
"title": "Hi Peeps!",
"message": "This is a special message for only for you... More details are available..."
}
}

一如既往,感谢您的信息和指导!

最佳答案

更新:对于v1,似乎不再支持registration_ids。强烈建议使用主题来代替。

<小时/>

由于 FCM 基于 GCM 核心,因此使用 registration_ids 参数时可以发送的注册 token 的最大数量为 1000。我很确定您确实在官方文档中看到了这一点文档。

因此,如果您仍然打算使用 registration_ids 参数,但需要将其发送给超过 1000 个,您可以按照 @Eran 在他的回答 here 中所说的进行操作:

If you need to send the same message to more than 1000 Registration IDs, you simply split the sending process into groups of 1000 Registration IDs. Each group would be sent in a separate request to GCM server.

<小时/>

但是,说到主题,就没有限制了。曾经有过,但几年前就被废弃了。我之前的回答已经提到过:

不。根据他们的blog 2015 年 12 月:

We’re now happy to announce that we’re allowing unlimited free topics for your app. This means app developers can place an unlimited number of devices within each topic and create an unlimited number of topics.

不。看到FCM以GCM为核心,任何应用程序的Topic数量都没有限制。以前有100万的限制,但现在被取消了。可以引用这个Google Developers Blog为此。

此外,在 FCM 中创建主题时,似乎需要一天时间才能使用,如 post 所示。 .

关于firebase - FCM : Message to multiple registration ids limit?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39375200/

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