这可能是一个愚蠢的问题,但我正在设法开发一个与Plaid的API集成的应用程序,而无需使用真实的银行帐户来测试它。我不是一个美国公民,因此我没有一个真正的银行帐户上的银行格子支持。
有没有办法在没有真实的银行帐户的情况下进行这种测试?
发布于 2016-11-17 13:51:47
对于此身份验证API https://tartan.plaid.com/auth,您可以使用以下测试凭据:'client_id=test_id,secret=test_secret,username=plaid_test,password=plaid_good,type=wells‘
正如在将Plaid API集成到您的应用程序的文档中所提供的那样,您可以使用此测试凭据进行测试。
请按此链接获取有关it的更多信息https://plaid.com/docs/api/#add-auth-user
发布于 2020-08-24 13:16:38
发布于 2019-12-20 21:24:12
这个问题可能很老,但有一种新的方法来实现这一点。当在沙箱环境中工作时,这个选项现在也有灵活的项目配置和逼真的数据。通过使用user_custom和符合模式的json密码。
例如
用户名: user_custom
密码:
{
"override_accounts": [
{
"type": "depository",
"subtype": "checking",
"transactions": [
{
"date_transacted": "2019-10-01",
"date_posted": "2019-10-03",
"currency": "USD",
"amount": 100,
"description": "1 year Netflix subscription"
},
{
"date_transacted": "2019-10-01",
"date_posted": "2019-10-02",
"currency": "USD",
"amount": 100,
"description": "1 year mobile subscription"
}
]
}
]
}https://stackoverflow.com/questions/40423505
复制相似问题