【发布时间】:2017-01-24 12:20:11
【问题描述】:
我将使用 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]"
}
这个回复
【问题讨论】: