我在使用沙箱环境测试MFA时遇到问题。发送到连接/步骤端点返回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?
答案 0 :(得分:2)
您必须在沙盒模式下显式设置类型。
所以将-d type=whatever_institution
添加到你的卷曲中。
考虑
作为mfa进程的开始然后
作为序列中的下一步。