A lightweight Cordova plugin for in app purchases on iOS/Android. See demo app and blog post.
- Simple, promise-based API
- Support for consumable/non-consumable products and paid/free subscriptions
- Support for restoring purchases
- Uses well tested native libraries internally - RMStore for iOS and an adjusted com.google.payments for Android
$ cordova plugin add cordova-plugin-inapppurchase
No configuration is necessary.
You must create a manifest.json
in your project's www
folder with your Android Billing Key:
{ "play_store_key": "<Base64-encoded public key from the Google Play Store>" }
You can get this key from the Google Play Store (under "Services & APIs") after uploading your app.
- Configuring Cordova in app purchases on iOS and Android
- Testing in app purchases
- Receipt validation (with nodejs)
- Tips for signing and running Cordova apps on Android to test in app purchases locally
All functions return a Promise.
- productIds - an array of product ids
Retrieves a list of full product data from Apple/Google. This function must be called before making purchases.
If successful, the promise resolves to an array of objects. Each object has the following attributes:
productId
- SKU / product bundle id (such as 'com.yourapp.prod1')title
- short localized titledescription
- long localized descriptionprice
- localized price
Example:
inAppPurchase
.getProducts(['com.yourapp.prod1', 'com.yourapp.prod2', ...])
.then(function (products) {
console.log(products);
/*
[{ productId: 'com.yourapp.prod1', 'title': '...', description: '...', price: '...' }, ...]
*/
})
.catch(function (err) {
console.log(err);
});
- productId - a string of the productId
If successful, the promise resolves to an object with the following attributes that you will need for the receipt validation:
transactionId
- The transaction/order idreceipt
- On iOS it will be the base64 string of the receipt, on Android it will be a string of a json with all the transaction details required for validation such as{"orderId":"...","packageName:"...","productId":"...","purchaseTime":"...", "purchaseState":"...","purchaseToken":"..."}
signature
- On Android it can be used to consume a purchase. On iOS it will be an empty string.productType
- On Android it can be used to consume a purchase. On iOS it will be an empty string.
Receipt validation: - To validate your receipt, you will need the receipt
and signature
on Android and the receipt
and transactionId
on iOS.
Example:
inAppPurchase
.buy('com.yourapp.prod1')
.then(function (data) {
console.log(data);
/*
{
transactionId: ...
receipt: ...
signature: ...
}
*/
})
.catch(function (err) {
console.log(err);
});
- productId - a string of the productId
This function behaves the same as buy() but with subscriptions.
- productType - string
- receipt - string (containing a json)
- signature - string
All 3 parameters are returned by the buy() or restorePurchases() functions.
Call this function after purchasing a "consumable" product to mark it as consumed.
NOTE: This function is only relevant to Android purchases.
On Android, you must consume products that you want to let the user purchase multiple times. If you will not consume the product after a purchase, the next time you will attempt to purchase it you will get the error message:
Unable to buy item / Item already owned
.
On iOS there is no need to "consume" a product. However, in order to make your code cross platform, it is recommended to call it for iOS consumable purchases as well.
Example:
// fist buy the product...
inAppPurchase
.buy('com.yourapp.consumable_prod1')
.then(function (data) {
// ...then mark it as consumed:
return inAppPurchase.consume(data.productType, data.receipt, data.signature);
})
.then(function () {
console.log('product was successfully consumed!');
})
.catch(function (err) {
console.log(err);
});
If successful, the promise resolves to an array of objects with the following attributes:
productId
state
- the state of the product. On Android the statuses are:0 - ACTIVE, 1 - CANCELLED, 2 - REFUNDED
transactionId
date
- timestamp of the purchaseproductType
- On Android it can be used to consume a purchase. On iOS it will be an empty string.receipt
- On Android it can be used to consume a purchase. On iOS it will be an empty string.signature
- On Android it can be used to consume a purchase. On iOS it will be an empty string.
Example:
inAppPurchase
.restorePurchases()
.then(function (data) {
console.log(data);
/*
[{
transactionId: ...
productId: ...
state: ...
date: ...
}]
*/
})
.catch(function (err) {
console.log(err);
});
See Differences Between Product Types
On iOS, you can get the receipt at any moment by calling the getReceipt() function. Note that on iOS the receipt can contain multiple transactions. If successful, the promise returned by this function will resolve to a string with the receipt.
On Android this function will always return an empty string since it's not needed for Android purchases.
Example:
inAppPurchase
.getReceipt()
.then(function (receipt) {
console.log(receipt);
})
.catch(function (err) {
console.log(err);
});
$ npm install
$ gulp watch
$ npm test
Or, if you would like to watch and re-run tests:
$ npm run watch
Coverage report:
$ nyc npm test
- cordova-icon - automatic icon resizing for cordova
- ng-special-offer - prompt users to rate your cordova app in the app store
- ionic-lock-screen - passcode lock screen for ionic (with touch id support for iOS)
- ionic-zoom-view - an easy way to add a zoom view to images using an ionic modal
- ng-persist - store data on mobile devices (using cordova) that persists even if the user reinstalls the app
The MIT License
Copyright (c) 2016, Alex Disler
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.