Is Firebase Cloud Messaging free?

前端 未结 5 1402
别那么骄傲
别那么骄傲 2020-12-13 03:21

I need to implement push notification feature in my application. Exploring some options.

Google recently recommends Firebase platform, but this is not completely a f

5条回答
  •  忘掉有多难
    2020-12-13 03:57

    https://firebase.google.com/pricing/

    This link should help you understand better. If you are implementing push notifications my suggestion would be that maintain your own database for the generated device tokens instead of using topic messaging.

    Two reasons why I avoided topic subscription is :

    1. There is a limit to the number of topics you can subscribe in free plan
    2. Topics are not subscribed immediately

    Although the number of active users allowed in parallel connection has a limit but its too much to exceed that easily.

    P.S. I use the spark plan by the way

提交回复
热议问题