在node.js中实现带条带的ach

时间:2018-01-09 08:51:34

标签: javascript node.js stripe-payments

我将客户银行详细信息转换为令牌。基于该令牌,我创建了客户ID。接下来我需要执行verifySource。但我在verifySource收到错误,错误是  **

  

未处理拒绝TypeError:无法读取属性'verifySource'   未定义**

** **这是我的代码是****

var stripe = require("stripe")("sk_test_73xfGiaFaZLWO8oVoNr8PqSe");
var tokenId = "btok_1BiIZkKB2GdGniJfVf8H0Yy0";
var data = {amounts: [32,45]}
// Token is created using Stripe.js or Checkout!
// Get the payment token ID submitted by the form:
//var token = request.body.stripeToken; // Using Express
// Create a Customer:
stripe.customers.create({
  email: "paying1.user@example.com",
  source: tokenId,
}).then(function(customer) {
  // YOUR CODE: Save the customer ID and other info in a database for later.
   stripe.customer.verifySource(
   tokenId,
  customer.id,
  {
    amounts: [32,45]
    },
   function(err, bankAccount) {
   });
   });

请帮帮我。验证后,下一步要处理的是什么。 如何验证用户银行帐户

由于

1 个答案:

答案 0 :(得分:4)

正如@Titus所指出的,您的代码中有一个拼写错误:stripe.customer.verifySource应该是stripe.customers.verifySource

此外,verifySource需要一个银行帐户ID(ba_...),而不是银行帐户令牌 ID(btok_...)。此外,客户ID应该是第一个参数,银行帐户ID应该是第二个参数(参见the API reference)。

尝试升级您的代码:

stripe.customers.create({
  email: "paying1.user@example.com",
  source: tokenId,
}).then(function(customer) {
  // YOUR CODE: Save the customer ID and other info in a database for later.
  stripe.customers.verifySource(
    customer.id,
    customer.sources.data[0].id,
    {
      amounts: [32, 45]
    }
  ).then(function(bankAccount) {
  });
});