Flutter教程

In App Purchase

Contents

A lightweight Cordova plugin for in app purchases on iOS/Android.

https://github.com/AlexDisler/cordova-plugin-inapppurchase

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic In App Purchase插件的安装(Installation)

ionic cordova plugin add cordova-plugin-inapppurchase npm install @ionic-native/in-app-purchase
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/in-app-purchase

Ionic In App Purchase插件支持的平台(Supported Platforms)

  • Android
  • iOS

Ionic In App Purchase插件的用法(Usage)

import { InAppPurchase } from '@ionic-native/in-app-purchase/ngx';

constructor(private iap: InAppPurchase) { }

...

this.iap
 .getProducts(['prod1', 'prod2', ...])
 .then((products) => {
   console.log(products);
    //  [{ productId: 'com.yourapp.prod1', 'title': '...', description: '...', price: '...' }, ...]
 })
 .catch((err) => {
   console.log(err);
 });


this.iap
  .buy('prod1')
  .then((data)=> {
    console.log(data);
    // {
    //   transactionId: ...
    //   receipt: ...
    //   signature: ...
    // }
  })
  .catch((err)=> {
    console.log(err);
  });