-
Notifications
You must be signed in to change notification settings - Fork 33
Description
Discussed in #433
Originally posted by c-karolpawlik March 7, 2022
Hi,
I'm using the Iterable SDK. And we have configured push notifications as OS Notification (the Iterable doc)
And I need to send the event about clicking on the Iterable push notification in system tray.
I handle it according to firebase doc.
I noticed that you have in your SDK methods trackPushOpen inside class IterableApi. These methods are protected. Can change visibility to public and publish it for users?
If yes, I'd like also have possibility to prepare parameters for that method.. Do you have some methods which extracts parameters from the Intent for trackPushOpen method purposes?
My goal is to get that event on WEB:

I tried to send IterableConstants.ACTION_NOTIF_OPENED event with IterableApi.getInstance().track(IterableConstants.ACTION_NOTIF_OPENED,.....). But the result was:

I'll be appreciate for your answer