yen
yen

Reputation: 2332

amazon cognito - how to change the redirect_uri?

Is it not possible to modify the redirect_uri of a cognito user pool after creating it? There is no option in the ui to access this!

Upvotes: 2

Views: 3434

Answers (1)

olx
olx

Reputation: 131

As of now (Nov '24), the redirect URIs can be set in the new AWS Congnito UI by doing the following:

  1. Navigate to: Amazon Cognito > User pools > [ your_user_pool ] > App clients > App client: [ your_client ]
  2. Choose the Login pages tab on the overview page
  3. Choose Edit in the Managed login pages configuration pan
  4. Add/remove your redirect URIs as desired (I added a localhost:3000 during development but don't intend to leave it there for prod)
  5. Save and you're done.

Cognito App client overview page enter image description here

Upvotes: 2

Related Questions