Configure App Client

Configure Application client

  1. Open Cloud Shell
aws cognito-idp create-user-pool-client \
    --user-pool-id us-east-1_xxxxxxx \
    --client-name WebApp-NoSecret \
    --no-generate-secret \
    --callback-urls '["http://localhost:3000/"]' \
    --logout-urls '["http://localhost:3000/"]' \
    --query 'UserPoolClient.ClientId' --output text

Example output: h1a234example123 you give userpood id to line, then enter you will create AppClient that do no generate secret


Navigation: