我正在尝试使用Stripe验证银行帐户。 Stripe文档中最接近的语言是Node.js,所以我的代码有点不同,但是在stripe.js创建的条带对象上没有“customers”对象的问题。
他们的代码(https://stripe.com/docs/ach#manually-collecting-and-verifying-bank-accounts):
// Set your secret key: remember to change this to your live secret key in production
// See your keys here: https://dashboard.stripe.com/account/apikeys
var stripe = require("stripe")("my_secret_key");
var data = {amounts: [32,45]}
stripe.customers.verifySource(
'customer_id',
'bank_account_id',
{
amounts: [32, 45]
},
function(err, bankAccount) {
});
我的代码:
<script src="https://js.stripe.com/v3/"></script>
<script>
$('input').on('keydown', function (e) {
if (e.which == 13) {
$('#VerificationAmounts').submit();
}
});
$('#VerificationAmounts').submit(function (e) {
e.preventDefault();
var stripe = Stripe("@publishKey");
var data = { amounts: [$('#Amount1').val(), $('#Amount2').val()] }
debugger;
stripe.customers.verifySource(
'@customerId',
'@bankAccount.Id',
data,
function (err, bankAccount) {
});
});
</script>
错误:
Uncaught TypeError: Cannot read property 'verifySource' of undefined
是否有人知道如何在条带对象上填充“customers”对象?
答案 0 :(得分:0)
Per @ Alex的评论,我试图使用stripe.js验证银行帐户,但我应该使用Stripe API。由于我使用C# MVC
,我需要将客户提供的小额付款金额传递给我的控制器并调用Verfiy
类Stripe.net
的{{1}}方法文档:https://github.com/stripe/stripe-dotnet。