In App Purchase
A lightweight Cordova plugin for in app purchases on iOS/Android.
联系我们?

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.
Ionic In App Purchase插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
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);
});