I am developing an interactive mobile application and use the server-side API to manage user-related data (backend). I am currently using AWS cognito to support user signin / signin, and all user data seems to be stored in the AWS user pool.
I want to save the authentication token and user data on my server side so that I can use this data to get user-related data. So, I want the following implementation approach
Inquiry:
Mobile App UI -> Server API (backend) -> AWS cognito
Answer:
AWS cognito -> Server API (backend) -> Mobile App UI
Is it possible? If not, what would be the best approach.
source
share