FCM (Firebase Cloud Messaging) how to send to all Phones?

前端 未结 1 2026
既然无缘
既然无缘 2020-12-01 19:14

I have created a small App that\'s able to receive Push Notifications from the FCM Console.

What i want to do now is to send a Push-Notifications to all Android Phon

相关标签:
1条回答
  • 2020-12-01 19:38

    Sending a message to all the phones like what you do from the Firebase Web Console is only possible from the Web Console. If you need this feature from the API you can submit a feature request: https://firebase.google.com/support/contact/bugs-features/

    Another possibility is to have all the client registering to a specific topic via FirebaseMessaging.getInstance().subscribeToTopic(topicName)

    In this way you can send a message to the whole topic without collecting the registration-ids manually.

    0 讨论(0)
提交回复
热议问题