Replies: 1 comment 1 reply
-
Hi there! If I am not mistaken, I believe you are referring to the ability to get the data out of an in app message when the user interacts with it? Unfortunately, while the message suppression, data collection, and manual message trigger APIs are implemented, these native firebase SDK click listeners (which are where the data would be accessed and presented to the javascript layer) have not been implemented by react-native-firebase so this data is not available at the moment For you (or anyone) interested in implementing them, there are lots and lots of native SDK listeners implemented already so there are quite a few chunks of code to use as patterns. Developing for react-native-firebase is not so hard - if you follow the https://github.com/invertase/react-native-firebase/blob/master/tests/README.md for the tests app, setup takes a little bit of time, but then the code/test/debug loop is quite fast. Implementing simply the messageClicked handler would get you what you need, and implementing one handler may not be the work of more than an hour or two? Here is an example to pattern off of, this is how the
Here is the Objective-C reference https://firebase.google.com/docs/reference/ios/firebaseinappmessaging/api/reference/Protocols/FIRInAppMessagingDisplayDelegate |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi guys,
I would like to access the additional parameters options via in-app messaging, they mention this when I create it (Key/value pairs that will be delivered with the message to your app).
But when my device receives the in-app message I don't see these values on the console (even after clicking it).
Is there any method or function I need to access?
Do let me know.
Thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions