使用组 ID 在 mozilla 上进行网络推送
web push on mozilla with group ids
我可以将消息发送到带有组 ID 的 Mozilla 推送服务端点吗,就像 FCM 的设备组消息传递一样?
/*
some code like :
"registration_ids": ["4", "8", "15", "16", "23", "42"]
*/
Mozilla autopush 是标准的推送服务,目前 W3C Push API 不支持组 或段。
唯一的选项是:
- 自行管理细分
- 使用添加额外抽象层并支持组和基于标签的路由的服务
我可以将消息发送到带有组 ID 的 Mozilla 推送服务端点吗,就像 FCM 的设备组消息传递一样?
/*
some code like :
"registration_ids": ["4", "8", "15", "16", "23", "42"]
*/
Mozilla autopush 是标准的推送服务,目前 W3C Push API 不支持组 或段。
唯一的选项是:
- 自行管理细分
- 使用添加额外抽象层并支持组和基于标签的路由的服务