2

I want to send automatic push notifications to my clients who are installing my flutter application. Can I do it without getting their device tokens. I am using firestore as my database

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441
Hasini
  • 327
  • 4
  • 19

1 Answers1

4

You can send messages to client apps using topic messaging, but each client app will need to be subscribed to the named topic. You will not be able to single out a specific device without a device token.

Doug Stevenson
  • 297,357
  • 32
  • 422
  • 441