I implemented keycloak in my nodejs application for registered users on keycloak, for login API i used API:
http://localhost:8080/auth/realms/master/protocol/openid-connect/token
it's return login users's token if username and password is correct,
Now I need to pass this token(return by above API) and check this token is correct or not and if token is correct I need user details, is there any API for this.
Thanks in advance