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



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

是否有一种方法可以在没有真实的银行账户的情况下进行这种测试?

对于这个认证API https://tartan.plaid.com/auth,您可以使用以下测试凭据:' client_id = test_id的= testrongecret、用户名= plaid_test密码= plaid_good type =威尔斯的

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

点击此链接了解更多信息https://plaid.com/docs/api/add-auth-user

对于沙盒模式,您可以在plaid

中使用以下详细信息进行测试

当前处于沙盒模式。 »

username: user_good

password: pass_good

文档

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

相关内容

  • 没有找到相关文章

最新更新