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

posta 2 anni fa341 visualizzazioni
1 Risposta
1
Risposta accettata

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
con risposta 2 anni fa
  • 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.

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande