本文介绍了钛金InAppBilling queryInventory返回错误代码-1003(InAppBilling.IAB_RESULT_VERIFICATION_FAILED)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用ti.inappbilling
模块在Android上进行应用内结算.我使用titanium sdk
5.1.2
I'm using ti.inappbilling
module for in-app billing on Android. I use titanium sdk
5.1.2
但是当我打电话时,它总是返回错误:
But when I call it's always returning an error:
var InAppBilling = require("ti.inappbilling");
InAppBilling.queryInventory({});
InAppBilling.addEventListener('queryinventorycomplete', function(e) {
if (e.success) {
purchase = e.inventory.getPurchase(productID);
}else{
Ti.API.error('queryinventorycomplete: ' + e.responseCode + " - " + responseString(e.responseCode));
}
});
推荐答案
对不起,这是我的错,我在设置中设置了未定义的PUBLIC_KEY.现在正确了
sorry it's my fault, I set an undefined PUBLIC_KEY in the setup. now it's correctly
谢谢您的回答
这篇关于钛金InAppBilling queryInventory返回错误代码-1003(InAppBilling.IAB_RESULT_VERIFICATION_FAILED)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!