4

我正在使用 plaid-ruby,尝试使用 webhook 添加用户:

Plaid.add_user 'connect',
               params['username'],
               params['password'],
               params['bank_type'],
               params['pin'],
               {
                 list: params['list'],
                 login_only: true,
                 webhook: 'http://requestb.in/rrd6zbrr'
               }

但是没有运气,不要收到任何对 requestbin 的请求。

Plaid 在开发模式下是否支持 webhook?或者 requestb.in 被阻止了?

4

1 回答 1

5

格子测试环境确实支持 webhook。我联系了 Plaid 支持,专门询问Plaid Link,因为这是我在 iOS 应用程序中使用的。这是我从 Plaid 收到的回复:

Plaid Link 确实支持网络书。下面是一些示例代码来说明:

<button id='linkButton'>Open Plaid Link</button>
<script src="https://cdn.plaid.com/link/stable/link-initialize.js"></script>
<script>
var linkHandler = Plaid.create({
  env: 'tartan',
  clientName: 'Test',
  key: 'test_key',
  product: 'connect',
  webhook: '[WEBHOOK URL]',
  onSuccess: function(public_token, metadata) {
    // Send your public_token to your app server here.
  },
});

// Trigger the Link UI
document.getElementById('linkButton').onclick = function() {
  linkHandler.open();
};
</script>

请注意,产品必须是“连接”的,并且您必须提供 webhook URL。

我能够让 webhook 在我自己的环境中工作(iOS 客户端应用程序,带有 Parse/Heroku 后端),但我没有使用测试凭据 - 我使用的是真实帐户。仅供参考,从我添加用户到收到 webhook 之间大约需要 10 分钟。

于 2015-11-25T20:43:07.340 回答