FCM 到单个设备的最大消息速率
FCM Maximum message rate to a single device
每https://firebase.google.com/docs/cloud-messaging/concept-options#device_throttling,它说...
You can send up to 240 messages/minute and 5,000 messages/hour to a single device. This high threshold is meant to allow for short term bursts of traffic, such as when users are interacting rapidly over chat. This limit prevents errors in sending logic from inadvertently draining the battery on a device.
这是否意味着设备每分钟只能接收 240 条消息?
或者这是否意味着它可以接收特定设备发送的 240 条消息?
比如说,4 个其他设备可以向一个设备发送 240 条消息?
这是对整个项目可以发送到设备的下游消息数量的限制。
向 设备发送消息只能在受信任的环境中进行(您的开发机器、Firebase 控制台、您控制的服务器、Cloud Functions)。无法使用 Firebase 客户端 SDK 发送下游消息。
每https://firebase.google.com/docs/cloud-messaging/concept-options#device_throttling,它说...
You can send up to 240 messages/minute and 5,000 messages/hour to a single device. This high threshold is meant to allow for short term bursts of traffic, such as when users are interacting rapidly over chat. This limit prevents errors in sending logic from inadvertently draining the battery on a device.
这是否意味着设备每分钟只能接收 240 条消息? 或者这是否意味着它可以接收特定设备发送的 240 条消息?
比如说,4 个其他设备可以向一个设备发送 240 条消息?
这是对整个项目可以发送到设备的下游消息数量的限制。
向 设备发送消息只能在受信任的环境中进行(您的开发机器、Firebase 控制台、您控制的服务器、Cloud Functions)。无法使用 Firebase 客户端 SDK 发送下游消息。