我正在尝试实现一个功能,该功能将返回给定用户的电子邮件,并且我想知道是否有办法通过其电话号码查找Cognito用户?
最佳答案
您可以使用ListUsers
API
请求语法:
{
"AttributesToGet": [email],
"Filter": "phone_number ^= \"+1123-456-7890\"",
"Limit": 1,
"UserPoolId": "us-west-2_samplepool"
}
在iOS SDK的 中,可以使用AWSCognitoIdentityProviderListUsersRequest请求类。
let getUsersRequest = AWSCognitoIdentityProviderListUsersRequest()
getUsersRequest?.attributesToGet = ["email"]
getUsersRequest?.userPoolId = "MyAWSCognitoUserPoolId"
getUsersRequest?.filter = "phone_number ^= \"+1123-456-7890\""
AWSCognitoIdentityProvider(forKey: AWSCognitoUserPoolId).listUsers(getUsersRequest!, completionHandler: { (response, error) in
})
例如,您可以查看我们的tests之一。
关于ios - AWS Cognito-通过电话号码获取用户,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50474728/