inAppPurchase
History
| Version(s) | Changes |
|---|---|
None | API ADDED |
In-app purchases on Mac App Store.
Process: Main
Events
The inAppPurchase module emits the following events:
Event: 'transactions-updated'
History
| Version(s) | Changes |
|---|---|
None | API ADDED |
Returns:
eventEventtransactionsTransaction[] - Array of Transaction objects.
Emitted when one or more transactions have been updated.
Methods
The inAppPurchase module has the following methods:
inAppPurchase.purchaseProduct(productID[, opts])
History
| Version(s) | Changes |
|---|---|
None | This method now returns a Promise instead of using a callback function. |
>=24.0.0 | Added |
None | API ADDED |
productIDstringoptsInteger | Object (optional) - If specified as an integer, defines the quantity.quantityInteger (optional) - The number of items the user wants to purchase.usernamestring (optional) - The string that associates the transaction with a user account on your service (applicationUsername).
Returns Promise<boolean> - Returns true if the product is valid and added to the payment queue.
You should listen for the transactions-updated event as soon as possible and certainly before you call purchaseProduct.
inAppPurchase.getProducts(productIDs)
History
| Version(s) | Changes |
|---|---|
None | This method now returns a Promise instead of using a callback function. |
None | API ADDED |
productIDsstring[] - The identifiers of the products to get.
Returns Promise<Product[]> - Resolves with an array of Product objects.
Retrieves the product descriptions.
inAppPurchase.canMakePayments()
History
| Version(s) | Changes |
|---|---|
None | API ADDED |
Returns boolean - whether a user can make a payment.
inAppPurchase.restoreCompletedTransactions()
History
| Version(s) | Changes |
|---|---|
None | API ADDED |
Restores finished transactions. This method can be called either to install purchases on additional devices, or to restore purchases for an application that the user deleted and reinstalled.
The payment queue delivers a new transaction for each previously completed transaction that can be restored. Each transaction includes a copy of the original transaction.
inAppPurchase.getReceiptURL()
History
| Version(s) | Changes |
|---|---|
None | API ADDED |
Returns string - the path to the receipt.
inAppPurchase.finishAllTransactions()
History
| Version(s) | Changes |
|---|---|
None | API ADDED |
Completes all pending transactions.
inAppPurchase.finishTransactionByDate(date)
History
| Version(s) | Changes |
|---|---|
None | API ADDED |
datestring - The ISO formatted date of the transaction to finish.
Completes the pending transactions corresponding to the date.