Parameters for Firebase VIEW_ITEM Event Not Displaying (iOS)

I am trying to track an event using Firebase Analytics using VIEW_ITEM https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#constants

//EVENT select POST FIRAnalytics.logEvent(withName: kFIREventViewItem, parameters: [ kFIRParameterItemID :"post", kFIRParameterItemName :(self.post?.title)!, kFIRParameterItemCategory :"post", kFIRParameterQuantity : UserDefaults.standard().integer(forKey: "nbReadPost") ]) 

I see an event displayed in the data, but when I click on it to see more detailed information, all data about the parameters (name, category, quantity ...) is not displayed. I have only default data.

However, I do not use custom settings.

(FYI: my account is associated with a large request)

screenshot1

+6
source share
2 answers

Firebase does not currently support parameter reporting for view_item, it can be read here: https://groups.google.com/forum/#!topic/firebase-talk/W9w-YKkW4fc

They are planning support ...

+1
source

After struggling with this problem for more than a week using VIEW_ITEM and not finding documentation about it, I decided to switch to using SELECT_CONTENT .

Apparently, only SELECT_CONTENT displays the parameters ( content_type and content_id ) in the control panel.

+2
source

All Articles