Android - Facebook Event track Purchase -


i'm working on implementing facebook tracking of purchase event in android. followed guide here https://developers.facebook.com/docs/app-events/android, , made custom bundle send fb.

the problem is, on facebook page of events, don't see value column updated purchase event.

this code:

        bundle parameters = new bundle();         parameters.putstring(appeventsconstants.event_param_currency, mcurrency);         parameters.putstring(appeventsconstants.event_param_content_type, mproducttype);         parameters.putstring(appeventsconstants.event_param_content_id, mpurchaseid);         double valuetosum = 12.042289; //this how price looks          appeventslogger logger = appeventslogger.newlogger(this);         logger.logevent(appeventsconstants.event_name_purchased, valuetosum, parameters); 

my problem that, valuetosum does not sum in facebook events page. it's shown "-".

any ideas doing wrong?

much appreciated.

it takes while data update on dashboard. try checking next day or ...


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -