facebook / facebook-ios-sdk

Used to integrate the Facebook Platform with your iOS & tvOS apps.

Home Page:https://developers.facebook.com/docs/ios

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Not able to find the value of parameters passed in App Events Dashboard

nadeemworkspace opened this issue · comments

Checklist before submitting a feature request

Goals

I can see the parameter keys in the Events manager but not the value
Screenshot 2024-05-06 at 5 41 07 PM
Manager

Expected results

I can see the parameter keys in the Events manager but not the value
Screenshot 2024-05-06 at 5 41 07 PM
Manager

Code samples & details

static func logAppEventWithParams(eventName: FBAppEvents, _ params: [String: Any]){
        if isProductionEnvironment(){
            let eventParams: [AppEvents.ParameterName: Any] = Dictionary(uniqueKeysWithValues: params.map { key, value in
            (AppEvents.ParameterName(rawValue: key), value)
          })
          let eventName = AppEvents.Name(rawValue: eventName.rawValue)
          AppEvents.shared.logEvent(eventName, parameters: eventParams)
        }
    }.