We are using API Gateway
to expose our APIs which sits in front of AWS Lambdas
. As authorizer, Cognito
user pool has been used in API Gateway to authenticate the user and protect the protected endpoints. So, the general flow is, user passes the below mentioned information to get access token from cognito via an API Gateway end point (/grantToken
) :
1. App client id
2. App client secret
3. username
4. password
After obtaining the access_token
, user passes this authorization token in the header while accessing the protected endpoints. Cognito automatically authorizes the user, and redirects the request to specific AWS Lambdas. This much is working fine.
What I want to know is, within the lambda, from the authorization token (passed in header) - how can I determine which user's token was passed? Is there any other way to determine the identity of the authorized user? Does AWS Cognito has any use in this case?
Note : If I can get App client id
from the passed authorization token, it will serve my purpose.