我在使用沙箱环境测试MFA时遇到了问题。投递到connect/step端点将返回401:
curl -X POST https://tartan.plaid.com/connect/step -d client_id=test_id -d secret=test_secret -d access_token="test" -d mfa="tomato"
{
"code": 1108,
"message": "invalid type",
"resolve": "This institution is not currently supported."
}是否可以使用沙箱环境测试MFA?
发布于 2014-11-21 07:01:27
您必须在沙箱模式下显式设置类型。
因此,将-d type=whatever_institution添加到您的卷发中。
考虑一下

作为mfa进程的开始,然后

作为接下来的步骤。
https://stackoverflow.com/questions/26940928
复制相似问题