Difference between revisions of "FBInstant.logEvent"
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 6: | Line 6: | ||
<translate><br /> | <translate><br /> | ||
Log an app event with FB Analytics. See https://developers.facebook.com/docs/javascript/reference/v2.8#app_events for more details about FB Analytics.<br /></translate> | Log an app event with FB Analytics. See https://developers.facebook.com/docs/javascript/reference/v2.8#app_events for more details about FB Analytics.<br /></translate> | ||
− | < | + | <syntaxhighlight lang="lua"> |
FBInstant.logEvent(eventName,valueToSum,parameters) | FBInstant.logEvent(eventName,valueToSum,parameters) | ||
</source> | </source> | ||
Line 15: | Line 15: | ||
=== <translate>Examples</translate> === | === <translate>Examples</translate> === | ||
'''Example'''<br/> | '''Example'''<br/> | ||
− | < | + | <syntaxhighlight lang="lua"> |
FBInstant.logEvent("my_custom_event",42,{custom_property="custom_value"}) | FBInstant.logEvent("my_custom_event",42,{custom_property="custom_value"}) | ||
<br/></source> | <br/></source> | ||
{{FBInstant}} | {{FBInstant}} |
Revision as of 14:26, 13 July 2023
Available since: Gideros 2018.3
Class: * Initialisation and Core
Description
Log an app event with FB Analytics. See https://developers.facebook.com/docs/javascript/reference/v2.8#app_events for more details about FB Analytics.
<syntaxhighlight lang="lua">
FBInstant.logEvent(eventName,valueToSum,parameters)
</source>
Parameters
eventName: (string) Name of the event. Must be 2 to 40 characters, and can only contain '_', '-', ' ', and alphanumeric characters.
valueToSum: (numbere) An optional numeric value that FB Analytics can calculate a sum with. optional
parameters: (table) An optional table that can contain up to 25 key-value pairs to be logged with the event. Keys must be 2 to 40 characters, and can only contain '_', '-', ' ', and alphanumeric characters. Values must be less than 100 characters in length. optional
Examples
Example
<syntaxhighlight lang="lua">
FBInstant.logEvent("my_custom_event",42,{custom_property="custom_value"})
</source>
- FBInstant.canCreateShortcutAsync
- FBInstant.checkCanPlayerMatchAsync
- FBInstant.createShortcutAsync
- FBInstant.getEntryPointAsync
- FBInstant.getEntryPointData
- FBInstant.getInterstitialAdAsync
- FBInstant.getLeaderboardAsync
- FBInstant.getLocale
- FBInstant.getPlatform
- FBInstant.getRewardedVideoAsync
- FBInstant.getSDKVersion
- FBInstant.getSupportedAPIs
- FBInstant.logEvent
- FBInstant.matchPlayerAsync
- FBInstant.onPause
- FBInstant.quit
- FBInstant.setLoadingProgress
- FBInstant.setSessionData
- FBInstant.shareAsync
- FBInstant.startGameAsync
- FBInstant.switchGameAsync
- FBInstant.updateAsync