请告诉我使用Cordova插件实现应用内购买的方式。
我正在使用Cordova开发Android应用程序。 有一些应用内购买插件,但我决定使用Cordova Purchase Plugin。
我在In-App Purchase for PhoneGap / Cordova iOS and Android的README.md上做了一些设置。 因此,我可以使用Demo of the Purchase Plugin for Cordova调用插件,只需稍加修改即可。 (见下文,它是代码的一部分。)
app.initStore = function() {
if (!window.store) {
log('Store not available');
return;
}
// Enable maximum logging level
store.verbosity = store.DEBUG;
// Enable remote receipt validation
// store.validator = "https://api.fovea.cc:1982/check-purchase";
// Inform the store of your products
log('registerProducts');
store.register({
id: 'myProductA',
alias: 'myProductA',
type: store.CONSUMABLE
});
// When any product gets updated, refresh the HTML.
store.when("product").updated(function (p) {
console.info("app.renderIAP is called");
app.renderIAP(p);
});
// Log all errors
store.error(function(error) {
log('ERROR ' + error.code + ': ' + error.message);
});
// When purchase of an extra life is approved,
// deliver it... by displaying logs in the console.
store.when("myProductA").approved(function (order) {
log("You got a ProductA");
order.finish();
});
// When the store is ready (i.e. all products are loaded and in their "final"
// state), we hide the "loading" indicator.
//
// Note that the "ready" function will be called immediately if the store
// is already ready.
store.ready(function() {
var el = document.getElementById("loading-indicator");
console.info(el + "ready is called")
if (el)
el.style.display = 'none';
});
// When store is ready, activate the "refresh" button;
store.ready(function() {
var el = document.getElementById('refresh-button');
console.info(el + "ready is called and refresh-button show?");
if (el) {
el.style.display = 'block';
el.onclick = function(ev) {
store.refresh();
};
}
});
// Refresh the store.
//
// This will contact the server to check all registered products
// validity and ownership status.
//
// It's fine to do this only at application startup, as it could be
// pretty expensive.
log('refresh');
store.refresh();
};
当插件不可用时显示“存储不可用”,显示“registerProducts”和“刷新”。 (*当然,我在Google Play开发者控制台上将“myProductA”添加到应用内商品中。)
但是我注意到没有调用下面的函数。
store.when("product").updated(function (p)
而且我无法理解参数应该填写什么,所以我在下面评论了。 (*我确实删除了评论,但它仍无效。)
store.validator = "https://api.fovea.cc:1982/check-purchase";
我猜这些事情都有问题。 我不确定堆叠在我身上是什么,所以我的问题不清楚。 我想要一些线索来解决它......或者我不应该使用Cordova插件实现应用内购买?
请帮帮我。
(我的英语不流利,所以我很抱歉有任何困惑。)
答案 0 :(得分:6)
您可以尝试使用此插件:https://github.com/AlexDisler/cordova-plugin-inapppurchase
以下是加载产品和进行购买的示例:
inAppPurchase
.buy('com.yourapp.consumable_prod1')
.then(function (data) {
// ...then mark it as consumed:
return inAppPurchase.consume(data.productType, data.receipt, data.signature);
})
.then(function () {
console.log('product was successfully consumed!');
})
.catch(function (err) {
console.log(err);
});
它支持Android和iOS。
答案 1 :(得分:1)
在电话缺口应用中集成应用内结算的步骤。
1>>通过此链接In-App billing Library
在您的电脑中克隆此项目2 - ;>使用CMD转到phonegap应用程序的根目录
3>>然后运行此命令 cordova插件add / path / to / your / cloned project --variable BILLING_KEY =" QWINMERR .......... RIGR"
注意:对于BILLING_KEY,请转到开发者控制台,然后打开您的应用程序并转到Service&有关更多信息的API请参阅附加的屏幕截图