I am trying to use the password grant to login the user. The API hosts both oauth2 server and resource api in same backend api.
When I send the POST request to /token, I get the below response. I am using the default example that is provided for now but I'm using the password grant instead of client_credentials grant.
{
"error": "access_denied",
"error_description": "The resource owner or authorization server denied the request"
}

I am trying to use the password grant to login the user. The API hosts both oauth2 server and resource api in same backend api.
When I send the POST request to /token, I get the below response. I am using the default example that is provided for now but I'm using the password grant instead of client_credentials grant.
{ "error": "access_denied", "error_description": "The resource owner or authorization server denied the request" }