1

我将使用 plaid + stripe api 集成到每次付款中,但是在获取帐户 ID 和 public_token 后,我无法从 plaid 获取 stripe_bank_account_token 来调用 curl 请求

我在这里使用 php 是请求

curl https://tartan.plaid.com/exchange_token \
   -d client_id="[Plaid client ID]" \
   -d secret="[Plaid secret]" \
   -d public_token="[Plaid Link public_token]" \
   -d account_id="[Plaid Link account_id]"

并且响应是 { "sandbox": true, "access_token": "test_chase" }

我无法得到

{
  "sandbox": true,
  "access_token": "[Plaid API access token]",
  "stripe_bank_account_token": "btok_5gr1QIfvhgEKdYSr17rH",
  "account_id": "[Plaid Account ID]"
}

这个回应

4

2 回答 2

0

您需要确保传递的客户端 ID 和密钥不是沙箱凭据,而是您的实际客户端 ID 和密钥,因为它们连接到您的 Stripe 帐户。

于 2016-09-20T03:54:51.500 回答
0

我有同样的问题,我用这个解决了它,根据你selectAccount在前端请求中缺少的链接,它应该是这样的:

<script>
var linkHandler = Plaid.create({
  env: 'sandbox',
  selectAccount: true, /* this is what i have added */
  clientName: 'Stripe/Plaid Test',
  key: '[Plaid key]',
  product: ['auth'],
  selectAccount: true,
  onSuccess: function(public_token, metadata) {
    // Send the public_token and account ID to your app server.
    console.log('public_token: ' + public_token);
    console.log('account ID: ' + metadata.account_id);
  },
  onExit: function(err, metadata) {
    // The user exited the Link flow.
    if (err != null) {
      // The user encountered a Plaid API error prior to exiting.
    }
  },
});

// Trigger the Link UI
document.getElementById('linkButton').onclick = function() {
   linkHandler.open();
 };
</script>

在响应中,他们返回一个account_id将在最后一个不适用于您的请求中使用的。

我希望这将有所帮助。

于 2017-11-28T08:30:11.380 回答