0

I have an app and I need to send massive push notifications per day. About Firebase services, I'll just use the Firebase Cloud Messaging (FCM) part (through my server-side PHP, of course I can't send massive notifications per day by console) and maybe Analytics (both are free of charges, right?).

The Pricing Page doesn't make a good explanation about what is each line below. So I need to know if:

  • If "Storage Upload operations" is when the app sends to Firebase some data?
  • If "Storage Download operations" is when the console (or my Server Side) sends to a device/group/all some push notification?

If I'll only use the Cloud Messaging part, is it better buy the BLAZE plan? If yes, what exactly do I have to add at this plan?

AL.
  • 36,815
  • 10
  • 142
  • 281
TroniPM
  • 329
  • 3
  • 13
  • 1
    Possible duplicate of [Is Firebase Cloud Messaging free?](http://stackoverflow.com/questions/37887066/is-firebase-cloud-messaging-free) – vzsg Jan 10 '17 at 21:05

2 Answers2

2

First, I think you are confusing the Notification service with the Cloud Messaging service (hence my edit).

Notifications is the part where you get to send Push Notifications through the Firebase Console. Cloud Messaging, is FCM itself, where you can call the APIs and send push notifications from your own App Server.

Firebase Storage is a separate service from both Cloud Messaging, Notifications, and Analytics. The thing is that Firebase Storage is paid and the other three are included free of use, regardless of what plan you are using. As seen in the Pricings Page:

Included Free

Analytics, App Indexing, Authentication, Cloud Messaging, Crash Reporting, Dynamic Links, Invites, Notifications & Remote Config

It does not contribute/add to the count value of usage for the other services.

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

There are only four paid Firebase products at present:

  • Firebase Realtime Database
  • Firebase Storage
  • Firebase Hosting
  • Firebase Test Lab

All other products including Firebase Cloud Messaging are free to use. Firebase Storage is a totally separate product from Firebase Cloud Messaging, so this question isn't really relevant.

Mike McDonald
  • 15,609
  • 2
  • 46
  • 49