Firebase主题订阅的实例ID的列表
Firebase主题订阅实例ID的问题是由于没有公共API来检索订阅特定主题的令牌列表而引起的。如果您想要这样的列表,您需要自己维护它。
此外,还可以参考以下内容:
- [List of clients who have registered for a topic in FCM](https://stackoverflow.com/questions/42592342)
- [Count subscribers of a topic in Firebase Cloud Messaging](https://stackoverflow.com/questions/40851105/40861417)
- [Firebase Cloud Messaging - Check existing or available Topics](https://stackoverflow.com/questions/39623742/39632704#39632704)
是否可以将一个主题订阅到另一个主题?
不可以。但是您可以通过条件向多个主题发送单个消息,这可能可以实现您的需求。请参考[firebase.google.com/docs/cloud-messaging/send-message#send_messages_to_topics](https://firebase.google.com/docs/cloud-messaging/send-message#send_messages_to_topics)。
Firebase主题订阅实例ID的问题是由于缺乏公共API来检索订阅特定主题的令牌列表而引起的。解决方法是自行维护该列表。此外,还可以通过条件向多个主题发送单个消息来实现类似的功能。