How to dismiss || ignore || delete push notifications? #5287
-
I want to filter some sort of push notifications without using 'Topic' (because using 'Topic' + 'Token' both is unaccepted). ++ another question |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Read this doc entirely: You're going to have to be a bit more specific about the type of notifications and fcm messages you're sending to the client.
If you're sending non data-only fcm messages, then filtering will be difficult since its automatically shown via native side code.
This should already be the case automatically for non data-only fcm notifications. |
Beta Was this translation helpful? Give feedback.
Read this doc entirely:
https://rnfirebase.io/messaging/usage#receiving-messages
You're going to have to be a bit more specific about the type of notifications and fcm messages you're sending to the client.
If you're sending non data-only fcm messages, then filtering will be difficult since its automatically shown via native side code.
If youre sending data-only messaging, then its easy to decide when to and not to show the notification since all that logic will be i…