我正在尝试使用https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/InAppPurchaseManager的phonegap插件在我的应用程序中进行应用内购买
但是在沙盒测试中,我得到以下错误
plugins.inAppPurchaseManager.updatedTransactionCallback.apply(plugins.inAppPurchaseManager,[“PaymentTransactionStateFailed”,0,“无法连接到iTunes Store”,“”,“,”“])
然后应用程序被删除...任何人都可以帮我解决这个问题吗?
最佳答案
看一下InAppPurchaseManager.js的内部,您会看到InAppPurchaseManager.prototype.updatedTransactionCallback的第一个调用是:
警报(状态);
用PhoneGap的首选替换它:
navigator.notification.alert(state);
它应该清除罚款。
关于iphone - 付款交易状态失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16421002/