AWS Cognito用户池标识REST示例

我们正在考虑为我们的应用程序使用用户池。 我想以REST方式试用API。 https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/Welcome.html上的文档没有其他请求和响应示例。 寻找SignUp,ResendConfirmationCode,ChangePassword和ConfirmSignUp示例。


目前它不在Cognito用户池文档中,但以下示例适用于SignUp。 同样,你可以为其他API制定它。 有效载荷应该是你指出的文件中提到的

CONTENT-TYPE: application/x-amz-json-1.1
X-AMZ-TARGET: com.amazonaws.cognito.identity.idp.model.AWSCognitoIdentityProviderService.SignUp

HOST: https://cognito-idp.us-east-1.amazonaws.com

{
"ClientId": "string",
"Password": "string",
"SecretHash": "string",
"UserAttributes": [
    {
        "Name": "string",
        "Value": "string"
    }
],
"Username": "string",
"ValidationData": [
    {
        "Name": "string",
        "Value": "string"
    }
]
}

也许你正在寻找这个?

Amazon Cognito REST API支持的操作

链接地址: http://www.djcxy.com/p/34771.html

上一篇: AWS Cognito user pool identity REST examples

下一篇: Trying to understand the Ruby .chr and .ord methods