Difference between revisions of "FBInstant.payments.consumePurchaseAsync"

From GiderosMobile
Line 8: Line 8:
 
  FBInstant.payments.consumePurchaseAsync(purchaseToken,callback)
 
  FBInstant.payments.consumePurchaseAsync(purchaseToken,callback)
 
</source>
 
</source>
'''purchaseToken''': (string) The purchase token of the purchase that should be consumed. ''''''<br/>
+
=== Parameters ===
'''callback''': (function) A function that will be called with two arguments: True when the purchase has been consumed successfully otherwise the operation failed, and an error code if the function failed. ''''''<br/>
+
'''purchaseToken''': (string) The purchase token of the purchase that should be consumed. <br/>
 +
'''callback''': (function) A function that will be called with two arguments: True when the purchase has been consumed successfully otherwise the operation failed, and an error code if the function failed. <br/>
 +
=== Examples ===
 +
'''Example'''<br/>
 +
<source lang="lua"><br />
 +
FBInstant.payments.consumePurchaseAsync("54321", function(result,error)
 +
    if result then
 +
print("Consumed!")
 +
end
 +
end)
 +
<br/></source>

Revision as of 11:41, 23 August 2018

Available since: Gideros 2018.3

Description


Consumes a specific purchase belonging to the current player. Before provisioning a product's effects to the player, the game should request the consumption of the purchased product. Once the purchase is successfully consumed, the game should immediately provide the player with the effects of their purchase.

 FBInstant.payments.consumePurchaseAsync(purchaseToken,callback)

Parameters

purchaseToken: (string) The purchase token of the purchase that should be consumed.
callback: (function) A function that will be called with two arguments: True when the purchase has been consumed successfully otherwise the operation failed, and an error code if the function failed.

Examples

Example

<br />
FBInstant.payments.consumePurchaseAsync("54321", function(result,error)
    if result then
		print("Consumed!")
	end
end)
<br/>