What is the name of the App Launch event for Facebook Analytics? -
i'm trying implement new analytics facebook game (using html/javascript , flash on canvas, there no mobile version), seems documentation incomplete. says there 14 predefined events:
"events 1 of 14 predefined events such 'added cart' in commerce app or 'level achieved' in game"
source: https://developers.facebook.com/docs/reference/javascript/fb.appevents.logevent
"the fourteen pre-defined events are: app launch, complete registration, content view, search, rating, tutorial completed, add cart, add wishlist, initiated checkout, add payment info, purchase, level achieved, achievement unlocked, spent credits."
source: https://developers.facebook.com/docs/app-events/faq
however, on reference page events should listed, list only 12 items long, , there no "app launch" event: https://developers.facebook.com/docs/reference/javascript/fb.appevents.logevent#events
now, there sample event lists games, basic , don't include actual code: https://developers.facebook.com/docs/app-events/best-practices#casual recommends use these events:
app install app launch completed registration completed tutorial level achieved achievement unlocked (...) here have far:
fb.appevents.activateapp() but event equivalent of app install or app launch?
also, should send before user accepts share basic info or after? i'm having many questions because it's not clear activateapp() does...
here code sending other events useful:
fb.appevents.logevent(fb.appevents.eventnames.completed_registration); fb.appevents.logevent(fb.appevents.eventnames.completed_tutorial); var params = {}; params[fb.appevents.parameternames.level] = '12'; //player level fb.appevents.logevent( fb.appevents.eventnames.achieved_level, null, // numeric value event - in case, none params ); i still have more questions: how can send game version number (maybe activateapp?) can create segments , cohorts later? example codes appreciated!
thanks in advance!
fb.appevents.activateapp() provides install , launch event functionality, why 2 events not enumerated options in https://developers.facebook.com/docs/reference/javascript/fb.appevents.logevent#events. activate app doesn't take parameter. might want @ using custom event satisfy use case.
Comments
Post a Comment