I'm implementing FCM on application and want to know if there's any way to see in which topics users tokens are subscribed ?
Asked
Active
Viewed 102 times
1 Answers
0
You will have to record topic subscriptions on your own. Subscriptions are registered per device, not per user (one user could be using multiple devices, each with different subscriptions). It's common for apps to manage a mapping between users, device tokens, and subscriptions in a database (such as Firebase Realtime Database or Firestore).

Doug Stevenson
- 297,357
- 32
- 422
- 441