Hasini
Hasini

Reputation: 337

Can I send push notification without using device token

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

Upvotes: 3

Views: 3474

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317712

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.

Upvotes: 5

Related Questions