1

「bofa」の 3 つの質問に答えるユーザー フローをテストしています。Plaid 経由で渡された質問に間違った答えを入力するユーザーをシミュレートしようとしています。

私の生のPOSTは

 "POST /connect/step?client_id=blah&secret=blah&mfa=1again&access_token=XYZ&type=bofa&options[webhook]=http%3A%2F%2Fx.y.zom%2Fplaid_webhook%2Fantennas HTTP/1.1\r\nConnection: close\r\nHost: tartan.plaid.com\r\nContent-Length: 0\r\nContent-Type: application/x-www-form-urlencoded\r\n\r\n"

私の間違った答え (「again」ではなく「1again」) に注意してください。また、正しいアクセス トークン (「XYZ」) の存在にも注意してください。

これが応答です

-> "HTTP/1.1 400 Bad Request\r\n"
 -> "Content-Type: application/json; charset=utf-8\r\n"
 -> "Date: Wed, 19 Mar 2014 20:20:20 GMT\r\n"
 -> "X-Powered-By: Express\r\n"
 -> "Content-Length: 144\r\n"
 -> "Connection: Close\r\n"
 -> "\r\n"
 reading 144 bytes...
 -> "{\"code\":1000,\"message\":\"access_token missing\",\"resolve\":\"You need to include the access_token that you received from the original submit call.\"}"
4

1 に答える 1

2

これで、サンドボックス内の mfa ユーザー フローですべてがスムーズに実行されるはずです! 正しい応答 "again" の代わりに "1again" (たとえば) を使用すると、適切なエラー コード応答が返されます。

{"code":1203,"message":"invalid mfa","resolve":"The MFA response provided was not correct."}
于 2014-04-11T04:27:30.080 に答える