Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How create notification topic for Firebase and use this?

I can create notifications for single user and for all users in my app, but I can't understand and find information about notification with create topic. For this need create separate service and how do my topics dynamic?

like image 503
Денис Климков Avatar asked Dec 20 '25 17:12

Денис Климков


1 Answers

There is no need to create a service when you want to subscribe to a topic. Just call anywhere in your app:

FirebaseMessaging.getInstance().subscribeToTopic("news");

Also see the section Subscribe the client app to a topic in the Firebase documentation.

like image 144
Frank van Puffelen Avatar answered Dec 23 '25 09:12

Frank van Puffelen