cmii
cmii

Reputation: 3636

Parameters for the Firebase event VIEW_ITEM isn't displayed (iOS)

I'm trying to track an event with 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 can see the event displayed in the data, but when I click on it to see more details, all the data about the parameters (name, category, quantity...) aren't displayed. I have just the default data.

However I don't use custom parameters.

(FYI : my account is linked to big query)

screenshot1

Upvotes: 7

Views: 4497

Answers (2)

Vicente Garcia
Vicente Garcia

Reputation: 6380

After struggling with this same problem for over a week using VIEW_ITEM and finding no documentation about it I decided to move on to using SELECT_CONTENT.

Apparently only SELECT_CONTENT displays parameters (content_type and content_id) information on the dashboard.

Upvotes: 2

Fahim
Fahim

Reputation: 1431

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

They are planning a support...

Upvotes: 1

Related Questions