0

I'm developing an app in react native using firebase and I can't find if it is possible to send notification TO firebase. More precisely, I want to send some kind of notification request to firebase so Firebase send notifications to devices.

Does anyone know how to do it?

E_net4
  • 27,810
  • 13
  • 101
  • 139
K1000
  • 53
  • 7

1 Answers1

1

You're probably looking for Cloud Messaging.

What you'll need:

  • A server to use FCM admin SDK (you can use Firebase Cloud Functions as well)
  • The device's FCM token that you want to send the notification to

Also take a look to In-App messaging.

remarcoble
  • 537
  • 1
  • 4
  • 19