我注意到一些机构有一个多步骤的 MFA,例如第一个 MFA 问题将是对电话号码的“令牌样式”请求,提交后,用户会收到一条文本并需要使用令牌进行响应。如何检测到这种情况并将最后一步提交给 Yodlee?
问问题
370 次
2 回答
0
好的,这就是 Yodlee 所说的“多级”MFA。您可以使用 DagMultilevel 进行测试。检查 MFA 请求时,这必须处于循环中,以便您在每个 MFA 响应后继续检查以查看“isMessageAvailable”是否为真。
于 2014-02-20T20:36:55.243 回答
0
Along with "isMessageAvailable" you should be checking the error code too, if error code is not null then there is no more MFA present.
If error code is 0 then the request was successful or else it failed with an error. You can check for those error codes in this page https://developer.yodlee.com/FAQs/Error_Codes
于 2014-02-21T09:59:29.950 回答