我正在将 stripe.js 集成到我的应用程序中。我正在做类似的事情:
var tokenDetails = {
number: $('#cnumber').val(),
exp_month: $('#expmonth').val(),
exp_year: $('#expyear').val(),
cvc: $('#cvc').val()
};
Stripe.createToken(tokenDetails, myCallback);
这确实启动了对条带创建令牌的调用,但是,我收到以下错误:
{
"error": {
"message": "Invalid amount. Amount must be an integer in cents.",
"param": "amount",
"type": "invalid_request_error"
}
}
文档没有说明需要“金额”字段来获取信用卡详细信息的令牌?这是必需的吗?在这种情况下,我将获取令牌,然后将用户添加到带有条带的重复计划中。有人知道这个错误吗?
编辑:
回调函数必须存在,我没有正确传递它。