6

这可能是一个愚蠢的问题,但我正在尝试找出一种方法来开发一个与 Plaid 的 API 集成的应用程序,而无需使用真实的银行帐户对其进行测试。我不是美国公民,因此我在 Plaid 支持的银行没有真实的银行账户。

有没有办法在没有真实银行账户的情况下进行这种测试?

4

3 回答 3

4

对于此身份验证 API https://tartan.plaid.com/auth,您可以使用以下测试凭据:'client_id=test_id,secret=test_secret,username=plaid_test,password=plaid_good,type=wells'

如将 Plaid API 集成到您的应用程序的文档中所述,您可以使用此测试凭证进行测试。

点击此链接以获取有关它的更多信息 https://plaid.com/docs/api/#add-auth-user

于 2016-11-17T13:51:47.590 回答
4

对于沙盒模式,您可以在格子中使用以下详细信息进行测试

目前处于沙盒模式。凭证»

username:用户好

password:pass_good

文档

于 2020-08-24T13:16:38.283 回答
1

这个问题可能很旧,但有一种更新的方法可以完成这个问题。在沙盒环境中工作时,现在还存在具有灵活项目配置和逼真数据的选项。通过使用user_custom和符合schema的 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"
        }
      ]
    }
  ]
}
于 2019-12-20T21:24:12.667 回答