私はAmazon Cognitoを接続するためにboto3を使用しています。私はsign_upメソッドを使用しようとしています。しかし、それがどのように生成されるのか分からないSecretHashというパラメータがあります。SecretHash:Amazon Cognito
SecretHashについて、元のドキュメント:
SecretHash (string) -- A keyed-hash message authentication code (HMAC) calculated using the secret key of a user pool client and username plus the client ID in the message.
私はSecretHashパラメータを入れていない場合、私は、以下のエラーを取得しています。この場合に役立ちます
botocore.exceptions.ClientError: An error occurred (NotAuthorizedException) when calling the SignUp operation: Unable to verify secret hash for client xxx
と同じエラーが発生します。 – cagatayodabasi
"Generate client secret"チェックボックスをオフにして、秘密を必要としない新しいアプリケーションクライアントを生成する必要があります。次に、新しいクライアントに対してこのパラメータを省略できます。 –