在成功实施后,我正在尝试实施 Google Play 应用内购买 v3在 v2 中.但是,每次我尝试购买我真正的应用内产品时,都会收到以下后续错误:
I am attempting to implement Google Play in-app purchase v3, after successfully implementing it in v2. However, every single time I attempt to purchase one of my real in-app products, I receive the following follow-up error:
IAB 返回 null purchaseData 或 dataSignature(响应 -1008:未知错误)
IAB returned null purchaseData or dataSignature (response -1008:Unknown error)
这来自 IabHelper.java 类,第 452 行:
if (purchaseData == null || dataSignature == null) {
logError("BUG: either purchaseData or dataSignature is null.");
logDebug("Extras: " + data.getExtras().toString());
result = new IabResult(IABHELPER_UNKNOWN_ERROR, "IAB returned null purchaseData or dataSignature");
if (mPurchaseListener != null) mPurchaseListener.onIabPurchaseFinished(result, null);
return true;
}
我已验证 a) 我的应用已签名,b) 我的应用版本与 Google Play 商店中的草稿版本# 相匹配,并且 c) 尝试购买的用户已被添加为测试用户.我已经在 3 个测试帐户和 4 个应用内购买订阅类型中进行了尝试.
I have verified that a) my app is signed, b) the version of my app matches the draft version # on the Google Play store, and c) the user attempting the purchase has been added as a test user. I have tried this across 3 test accounts and 4 in-app purchase subscription types.
我自己也遇到过这个问题.过了一会儿,我发现我做错了什么.我在 IABHelper 上调用了错误的方法.
I had this problem myself. After a while I found what I did wrong. I was calling the wrong method on the IABHelper.
如果您使用在 Google Developer Console 上注册为订阅的 SKU 调用 mHelper.launchPurchaseFlow(...)
,则会导致错误:IAB 返回 null purchaseData 或 dataSignature(响应 -1008:未知错误).
If you call mHelper.launchPurchaseFlow(...)
with an SKU that is registered as a subscription on Google Developer Console it will result in the error:
IAB returned null purchaseData or dataSignature (response -1008:Unknown error).
如果您有注册为订阅的 SKU,则必须改用以下方法:mHelper.launchSubscriptionPurchaseFlow(...)
.
If you have a SKU that is registered as an subscription you have to use the method: mHelper.launchSubscriptionPurchaseFlow(...)
instead.
希望这会有所帮助.
这篇关于Google Play 应用内购买返回错误代码 -1008:null puchaseData 或 dataSignature的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!