没有这样的标记:'btok_1JGm2oKFR93cFUSYN2bui4Yb' 当我尝试为 Stripe 客户创建银行帐户时

No such token: 'btok_1JGm2oKFR93cFUSYN2bui4Yb' when i try to create a Bank Account for Stripe Customer

每当我使用 plaid/stripe 集成创建一个银行帐户令牌并继续使用它为我的客户创建一个 Stripe 银行帐户时,它总是返回没有这样的令牌错误。 现在我已经完成了这里发布的其他问题,这些问题建议检查环境是否匹配,即我的条带键是否是测试键以及我的 Plaid 是否处于沙盒模式。 他们都处于测试模式,但仍然失败。

PLAID_ENV = sandbox
const client = new plaid.Client({
  clientID: PLAID_CLIENT_ID,
  secret: PLAID_DEV_SECRET,
  env: plaid.environments[PLAID_ENV],
  options: {
    version: '2020-09-14', // '2020-09-14' | '2019-05-29' | '2018-05-22' | '2017-03-08'
  }
});```

My stripe is using the Stripe Test keys. I confirmed the accounts are linked. 
Any help figuring out why it still returns this error would be appreciated

“No such...”错误通常是由于 API 密钥不匹配(例如,混合使用您的测试密钥和实时密钥)或尝试访问存在于不同数据库中的对象帐户(例如,尝试从您的平台帐户对在关联帐户上创建的对象执行操作)。