格子不支持[银行]和[应用程序]之间的连接

发布于 2025-01-20 13:33:32 字数 507 浏览 3 评论 0原文

我正在使用格子链接和服务器端API来让用户使用AUTH产品注册帐户/路由号码。我们的客户拥有可以在UI的SELECT您的银行搜索栏以及API的/Insticutions/GET Endpoint中检索的银行,但似乎不是选择和链接的可行选择。当我尝试将其链接在UI中时,会有一个警告图标和一条消息,上面写着“格子不支持[银行]和[应用程序]之间的连接。尝试另一个金融机构或检查其他连接方法。”

这是否意味着可以支持银行,但是我的应用程序不正确配置以支持它?它似乎有我正在使用的产品(auth)。我想让客户添加这家特定的银行,但也了解阻碍者为我的应用程序提供支持的类似银行。

我已经看到一些银行需要Oauth (当我调用/Institutions/Get时,OAuth是错误的。我想知道我是否缺少其他一些要求。

I'm using Plaid Link and server-side API to let users register account/routing numbers with the auth product. We have customers with a bank that's retrievable in the UI's Select Your Bank search bar and with the API's /institutions/get endpoint, but it seems to not be a viable option to select and link. When I try to link it in the UI, there's a warning icon and a message that says "Plaid does not support connections between [Bank] and [Application]. Try another financial institution or check for another connection method."

Does this mean the bank can be supported, but my application isn't properly configured to support it? It seems to have the product I'm using (auth). I'd like to enable customers to add this specific bank, but also understand what the blockers are to supporting similar banks for my application.

I had seen that some banks require Oauth, but this one doesn't look like it does (oauth is false for it when I call /institutions/get). I wonder if there's some other requirement I'm missing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对你的占有欲 2025-01-27 13:33:32
  1. 您说您正在使用身份验证进行初始化,但是您是否仅使用身份验证进行初始化而不使用其他任何东西?如果您使用多个产品进行初始化并且它不支持所有产品,则可能会出现此错误。
  2. 银行是什么?了解这一点对于故障排除有很大帮助;有些银行在各个方面都是特殊的雪花。
  1. You say you're initializing with auth, but are you initializing with only auth and nothing else? You can get this error if you're initializing with multiple products and it doesn't support all of them.
  2. What's the bank? Knowing that would help a lot for troubleshooting; some banks are special snowflakes in various ways.
我的影子我的梦 2025-01-27 13:33:32

尝试(节点API),

PlaidClient.institutionsGetById(institutionId);

它将为您提供给定机构支持的产品。
示例:

{"country_codes":["US"],"institution_id":"ins_xxx","name":"XYZ","oauth":false,"products":["assets","balance","transactions","identity"],"routing_numbers":["xxx"]}

如果您生成了一个链接令牌,该链接令牌不包含您的银行列出的产品(上图),则会遇到“格子不支持...之间的连接”错误。

Try (Node API)

PlaidClient.institutionsGetById(institutionId);

which will give you the products the given institution supports.
Example:

{"country_codes":["US"],"institution_id":"ins_xxx","name":"XYZ","oauth":false,"products":["assets","balance","transactions","identity"],"routing_numbers":["xxx"]}

If you have generated a link token that does not contain the products listed from your bank (above), you will get the error "Plaid does not support connections between ..."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文