0

We are migrating from Parse to FCM (Firebase Cloud Messaging).

Parse has a great endpoint we've used to get the number of devices subscribed to specific topic (Parse calls is channel): https://parseplatform.github.io/docs/rest/guide/#querying-installations

I cannot find it's equivalent in FCM. I know there is Firebase Analytics dashboard, but I'm looking for API endpoint.

Does FCM provide any API endpoints which could be used for analytics purposes?

ozren1983
  • 1,891
  • 1
  • 16
  • 34

1 Answers1

1

Unfortunately, there is no current way to get the number of subscribers of a topic in FCM. See @ArthurThompson's answer here.

No. There is no current way to query the number of subscribers to a topic, you would have to maintain the relationship between token and topics on you app server.

For your analytics inquiry, are you refering to an API where you can retrieve logs/details for your FCM messages? If so, you can refer to this post.

Community
  • 1
  • 1
AL.
  • 36,815
  • 10
  • 142
  • 281