Hello,
This is my first post on this forum, so going to try my best at explaining my current issue.
I’ve connected my bubble app to Firebase Dynamic Links Analytics API, and it’s working good. I’m using this to create an affiliate program, so my users can see how many downloads they’ve generated.
The issue is that firebase sends back many events and counts for things that are not important.
Here is an example of the output they provide:
{
“linkEventStats”: [
{
“platform”: “ANDROID”,
“count”: “123”,
“event”: “CLICK”
},
{
“platform”: “IOS”,
“count”: “123”,
“event”: “CLICK”
},
{
“platform”: “DESKTOP”,
“count”: “456”,
“event”: “CLICK”
},
{
“platform”: “ANDROID”,
“count”: “99”,
“event”: “APP_INSTALL”
},
{
“platform”: “ANDROID”,
“count”: “42”,
“event”: “APP_FIRST_OPEN”
},
…
]
}
I’m only interested in displaying “APP_FIRST_OPEN” for both IOS and Android, but I can’t seem to find an effective way of doing it. What I’m currently doing is displaying every single parameter, but I only want two.
Is there a way to only display the count for event types; "“APP_FIRST_OPEN” for both IOS and Android, and not the rest?