amazon_iap

1.1.1 • Public • Published

amazon_iap

NodeJs helper service to validate in-app purchase using the amazon receipt verification service (RVS).

Install

$ npm install amazon_iap

alt tag Usage

You can look at Amazon documention about the process here.

After you configure and run the service, you can browse it:

var that = this;
var options = {
    email: 'your developer email',
    key: 'your developer key'
};
var verifier = new AmzIAPVerifier(options);
var receipt = {
    packageName: 'package name',
    productId: 'the name of your product',
    purchaseToken: 'The response token from the in-app purchase process',
    userId: 'The reponse user id from the in-app purchase process'
};
verifier.validateConsumable(receipt, function(err, response) {
    if (err) {
        console.log('error occur');
    } else if(response.itemType == "CONSUMABLE") {
        console.log('everything is ok');
    } else {
        console.log('other error occur');
    }
});

Version

1.1.0

License

MIT

Author

Meir Shamay @meir_shamay

Free Software, Hell Yeah!

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.1.1
    1
  • 1.1.0
    0

Package Sidebar

Install

npm i amazon_iap

Weekly Downloads

1

Version

1.1.1

License

MIT

Last publish

Collaborators

  • may215