作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我实现了 https://github.com/awslabs/aws-sdk-ios-samples/blob/master/CognitoYourUserPools-Sample/Swift/CognitoYourUserPoolsSample/MFAViewController.swift 中的示例以这种方式:
import Foundation
import UIKit
import AWSMobileClient
import AWSCognitoIdentityProvider
class MFAModalViewController: UIViewController {
@IBOutlet weak var messageLabel: UILabel!
@IBOutlet var backgroundView: UIView!
@IBOutlet weak var boxView: UIView!
@IBOutlet weak var mfaTextField: UITextField!
public var message: String?
var mfaCompletionSource: AWSTaskCompletionSource<NSString>?
@IBAction func mfaTextFieldChanged(_ sender: Any) {
if let mfaCode = mfaTextField.text, mfaCode.count == 6 {
self.mfaCompletionSource?.set(result: NSString(string: mfaCode))
}
}
override func viewDidLoad()
{
super.viewDidLoad()
if let message = message {
messageLabel.text = message
}
}
}
extension MFAModalViewController: AWSCognitoIdentityMultiFactorAuthentication {
func getCode(_ authenticationInput: AWSCognitoIdentityMultifactorAuthenticationInput, mfaCodeCompletionSource: AWSTaskCompletionSource<NSString>) {
hud.dismiss()
self.mfaCompletionSource = mfaCodeCompletionSource
}
func didCompleteMultifactorAuthenticationStepWithError(_ error: Error?) {
...
}
}
但是,将 AWSTaskComplettionSource 设置为输入的 MFA 代码后,我从未收到对 AWSCognitoIdentityMultiFactorAuthentication 委托(delegate)中的 didCompleteMultifactorAuthenticationStepWithError 方法的回调。
对我的遗漏有什么想法吗?
最佳答案
好的,解决方案是不使用 AWSCognitoIdentify,而是使用 AWSMobileClient。我错过了 MFA 验证的方法:
AWSMobileClient.sharedInstance().confirmSignIn(challengeResponse: mfaCode) { (signInResult, error) in
DispatchQueue.main.async {self.handleConfirmation(signInResult: signInResult, error: error)}
}
}
关于ios - AWSCognitoIdentityMultiFactorAuthentication 永远不会返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58686846/
我实现了 https://github.com/awslabs/aws-sdk-ios-samples/blob/master/CognitoYourUserPools-Sample/Swift/Co
我是一名优秀的程序员,十分优秀!