Skip to content

Instantly share code, notes, and snippets.

@kmclaugh
Last active December 21, 2020 17:11
Show Gist options
  • Save kmclaugh/4f99dd27eb65ec5962d81077c260377b to your computer and use it in GitHub Desktop.
Save kmclaugh/4f99dd27eb65ec5962d81077c260377b to your computer and use it in GitHub Desktop.
iOS FB SDK Flikshop
/**
* Call the built-in SDK function:
* amount is Double (required)
* currency is String from http://en.wikipedia.org/wiki/ISO_4217 (optional).
* parameters is ParametersDictionary (optional).
*/
AppEvent.purchased(
amount: purchaseAmount,
currency: "USD",
extraParameters: {
contents: itemsArray, // Same array as firebase
num_items: 1,
content_type: "product"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment