Does anyone know how to see ITEM_ID/ITEM_NAME in f...
# firebase
p
Does anyone know how to see ITEM_ID/ITEM_NAME in firebase console? I'm facing the same issue explained here: https://stackoverflow.com/questions/75508070/cant-see-item-id-in-select-content-on-firebase Firebase docs says that for logging events you must do this:
Copy code
firebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_ITEM) {
    param(FirebaseAnalytics.Param.ITEM_ID, id)
    param(FirebaseAnalytics.Param.ITEM_NAME, name)
    param(FirebaseAnalytics.Param.CONTENT_TYPE, "image")
}
But the reality is that if you do that, it's impossible to see ITEM_ID and ITEM_NAME in the firebase console. You only can see grouped CONTENT_TYPE events. There are a lot of stackoverflow posts of people saying the same.