Reputation: 897
Recently i integrated the firebase notification and migrated from GCM. Everything working well. But i want to know regarding USER-SEGMENT option in firebase console. Its totally works based on firebase analytics and captured some default user-properties and events.
Default capturing user-property : https://support.google.com/firebase/answer/6317486
But before that the action i want to clarify below few items. Anybody knows reply those questions.
Any ideas regarding these clarification.
Upvotes: 0
Views: 357
Reputation: 598708
An audience is a group of the users of your app that share certain properties. For example, you could define an audience of all users of the Android version of your app from Holland. Then you could send a notification to that audience from the Firebase Console.
A topic is nothing more than a "thing" that the user's app can subscribe to. If you then send messages to that topic through either the Firebase Console of the Cloud Messaging API, it will be received by the apps that have subscribed to the topic.
You could say that topics are groups of users that the app code (and thus potentially the users) determine that they're a part of, while audiences are determined on the server based on app analytics.
You define audiences in the Analytics panel of the Firebase Console.
Upvotes: 2