我将使用 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]"
}
这个回应