我正在使用Hybrid
开发ionic-3
个应用。我想用条纹付款。我从卡片细节中获得了令牌ID,但我知道如何在角度2中获得令牌ID之后如何收费。我做了:
npm install stripe
我将条带模块放入node_modules文件夹。这是我的get token-id的支付功能,现在我想收费。
pay() {
this.stripe.setPublishableKey('pk_test...');
this.stripe.createCardToken(this.cardinfo).then((token) => {
console.log("token.id")
})
.catch(error =>
console.log(error)
);
}
答案 0 :(得分:0)
您需要使用密钥在服务器端创建费用,因此您需要将令牌ID发布到可以为您执行此操作的服务器端端点:https://stripe.com/docs/charges
编辑:此外,您无法使用Stripe Node库客户端;它没有这些功能。您需要该部分的元素:https://stripe.com/docs/stripe-js