Hi group!I'm a mobile product manager and I try to create an simplified implementation guide for our devs. I'm pretty new with Firebase Analytics (FBA) and I have a couple of questions:
- What is the meaning of "The following event names are reserved and cannot be used in firebase analytics". Do those events are already build in with FBA?
- Can I attribute any of listed parameters to any events? Let's say I would like to use ITEM_NAME param for a CONTENT event.
- Can I have more than one value per parameter? for ITEM_CATEGORY I would pick t-shirt, pants, shoes.
- When I attribute more than one parameter to an event are they related one to the other? Let's say I use VIEW_ITEM to track all icons selected from a box, can I use ITEM_CATEGORY for t-shirt, pants, shoes and ITEM_NAME for brands and join them. Ex : t-shirt and Pantagonia, pants and levis ...
- How can I extract user id from my db and use it as an identifier in FBA?
Thanks!JS
Hi group!I'm a mobile product manager and I try to create an simplified implementation guide for our devs. I'm pretty new with Firebase Analytics (FBA) and I have a couple of questions:
- What is the meaning of "The following event names are reserved and cannot be used in firebase analytics". Do those events are already build in with FBA?
- Can I attribute any of listed parameters to any events? Let's say I would like to use ITEM_NAME param for a CONTENT event.
- Can I have more than one value per parameter? for ITEM_CATEGORY I would pick t-shirt, pants, shoes.
- When I attribute more than one parameter to an event are they related one to the other? Let's say I use VIEW_ITEM to track all icons selected from a box, can I use ITEM_CATEGORY for t-shirt, pants, shoes and ITEM_NAME for brands and join them. Ex : t-shirt and Pantagonia, pants and levis ...
- How can I extract user id from my db and use it as an identifier in FBA?
Thanks!JS
Thank you Steve for your fast and complete response. I do really appreciate it.I have other questions for you. :)Let's say we do have a messaging app.I've trouble choosing what to tag between SELECT_CONTENT and VIEW_ITEM, they seem to track the same kind of tasks.
For the moment, I would do this:SELECT_CONTENT
- CONTENT_TYPE to track :
- video shared
- audio shared
- image shared
- emoji shared
- button
- ITEM_NAME to track:
- emoji_name
- accept_friend request
- start a conversation
VIEW_ITEM
- ITEM_CATEGORY
- SCREEN NAME
- ERROR MESSAGE
- ITEM_NAME
- screen_name
- type_of_error
That being said, when i add a parameter, do I need to indicate string values? Let's say I want to use name convention taken for emoji without having to add new one to the list. Or for SEARCH_TERM param, do I have to leave the string values empty to gather data automatically?
Thanks again Steve.After reading at your comment, I understand that I don't really need to tag each screen with VIEW_ITEM unless I want to do remarketing in the future. However, are all screens already tagged by default?
You've ask : Are the other two button names? In other words, to which categories do "accept_friend request" and "start a conversation" apply? They will apply to different button type. Should I have an unique button value per action (send message, accept_friend_request, start search) in the Content_TYPE instead of having it in ITEM_NAME?
Also, I've started to follow the implementation method for IOS and it seems that everything is already set up within the SDK. Am I right? I can't see if we have the same customization level option with parameter as Android.