Last active
December 21, 2020 17:11
-
-
Save kmclaugh/4f99dd27eb65ec5962d81077c260377b to your computer and use it in GitHub Desktop.
iOS FB SDK Flikshop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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