trouble getting userinfo from id_token in Cognito

0

After performing an .....amazoncognito.com/login?.... via the hosted web UI, I am correctly redirected to the callback URL with a query param "id_token" that I can use to access my API Gateway endpoints via x-api-key.

I am wanting to use the ID token to get the Cognito user info associated with that token (for verifying in my API that the token will allow for access to data that should only be accessed by that user).

How can I get the Cognito User ID, email etc? the ....amazoncognito.com/ouath2/userinfo seems like what i need but don't know how to correctly use that endpoint with the ID_token I have.

Lehel
asked 2 years ago1482 views
1 Answer
0

Hi,

The ID Token is a JWT Token. The payload section of the JWT token should have the user info that you are looking for.

I'd recommend checking out the following documentation and knowledge center article:

  1. Using the ID token
  2. How can I decode and verify the signature of an Amazon Cognito JSON Web Token?
AWS
SUPPORT ENGINEER
Ryan_A
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions