Cognito AdminCreateUser Endpoint

0

Hi, I'm trying to use the AdminCreateUser action via Cognito User Pool API with an API and not via CLI. I don't know which endpoint we use to make the AdminCreateUser request? https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminCreateUser.html

1回答
1
承認された回答

The API endpoints you'd need are here: https://docs.aws.amazon.com/general/latest/gr/cognito_identity.html#cognito_identity_region. You can see the requests the CLI is making by adding the --debug flag. To call that API action manually, you'd need to send a signed request with the header X-Amz-Target: AWSCognitoIdentityProviderService.AdminCreateUser.

However, if you're just wanting to call that API programatically, I'd recommend using one of the AWS SDKs, which will handle these low level requests for you. For example, in Python, you'd simply need to call the admin_create_user() function.

Ed
回答済み 2年前
  • So helpful! Thank you. I ended up creating a lambda using the SDK as you suggested and was able to make the admincreateuser calls very easily.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ