gpt4 book ai didi

ios - 使用 ListUsers API 或 iOS SDK 搜索用户 Amazon Cognito

转载 作者:行者123 更新时间:2023-11-28 18:50:46 27 4
gpt4 key购买 nike

我在 Swift 中创建一个 iOS 应用程序,但找不到使用 API 搜索或获取 Cognito 用户列表的方法。根据亚马逊文档,它说使用 ListUsers API;但是,它不提供发出请求的端点,并且很难通过 AWS 对 REST API 请求进行身份验证,所以是否可以通过 iOS SDK 执行此操作?这些是我想包含在我的请求中的参数。

[
"AttributesToGet": ["username" ],
"Filter": "username ^= \"micheal\"",
"Limit": 10,
"UserPoolId": "\(AWSCognitoUserPoolId)"
]

最佳答案

您必须通过移动 SDK 进行搜索。

对于 iOS

 // Make a AWSCognitoListUsers Request
let getUsersRequest = AWSCognitoIdentityProviderListUsersRequest()

// Add the Parameters
//getUsersRequest?.attributesToGet = ["username"]
getUsersRequest?.userPoolId = AWSCognitoUserPoolId

// Make the Request
AWSCognitoIdentityProvider(forKey: AWSCognitoUserPoolId).listUsers(getUsersRequest!, completionHandler: { (response, error) in


// The response variable contains the Cognito Response

})

关于ios - 使用 ListUsers API 或 iOS SDK 搜索用户 Amazon Cognito,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41364720/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com