不使用真实银行账户来测试格子集成的方法

Way to not use a real bank account to test plaid integrations

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

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

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

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

关注此 link 了解更多信息 https://plaid.com/docs/api/#add-auth-user

这个问题可能很老,但是有一种更新的方法可以解决这个问题。在沙盒环境中工作时,现在还可以选择灵活的项目配置和逼真的数据。通过使用 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"
        }
      ]
    }
  ]
}

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

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

username: user_good

password: pass_good

Docs