AWS Cognito Dynamic Query Parameter Values?

0

I am using the Cognito-hosted UI. I'd like to route users back to their original url after successful authentication with their specific query parameter values. It doesnt seem that AWS can handle this. Posting in here in case this is not true.

mmetr
preguntada hace un año946 visualizaciones
2 Respuestas
0

You can use the state parameter to redirect users back to their original URL after authentication with Cognito-hosted UI:

  1. Store the original URL in the state parameter when starting authentication. URL-encode the original URL.
https://<your-domain>.auth.<region>.amazoncognito.com/login?response_type=code&client_id=<your_client_id>&redirect_uri=<your_redirect_uri>&state=<url_encoded_original_url>
  1. In your callback handler, get the state parameter from the authentication response.

  2. Redirect the user to the original URL obtained from the state parameter.

This way, you can redirect users to the correct URL with their specific query parameters after authentication.

profile picture
EXPERTO
respondido hace un año
  • Ok - to be clear, I am using the hosted UI. I am not aware of there being a "callback handler". Are you just saying that my redirect uri should have something to handle the state? I am using API Gateway + Lambda to build a serverless app if that helps.

0

Could you please provide detailed implementation steps?

Abhijit
respondido hace 2 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas