I want to avoid the keycloak login page. I refer this "Avoid keycloak default login page and use project login page" link and able to get the access token using post method to "http://localhost:5555/auth/realms/master/protocol/openid-connect/token" link.
After getting access token in this step, it is mentioned to pass the below headers
headers :{
Authorization : 'Bearer ' + access_token_you_got
}
But it is not clear about where to pass the access token and what will be the response and what type of request.
This question might look very basic. As i am new to this, it is taking long time to understand. Any help is appreciated here.