kreait / laravel-firebase

A Laravel package for the Firebase PHP Admin SDK

Home Page:https://github.com/kreait/firebase-php

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Firebae notification topic limit.

Nits7029 opened this issue · comments

I'm using firebase topic messaging for bulk notifications.
What I want to know is what is app instanc in firebase's documentation.
It says one app instance can subscribe no more than 2000 topics,if so how can I use topics for millions of users.
and if there is a limit then how others are managing.

https://firebase.google.com/docs/cloud-messaging/android/topic-messaging

This is a 3rd party library and the issue tracker here is intended for bugs and issues concerning the library - for questions about Firebase (the service) you could ask Firebase directly or on StackOverflow 🙏

That being said: the 2000 topic limit relates to App Instances (=devices/browsers on which your application is installed), not the number of topics in total.

If you have millions of App instances, each of the instances can be subscribed to up to 2000 topics.

I hope this helps 🤞

That makes sense,
Thanks you @jeromegamez.