You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
}
The text was updated successfully, but these errors were encountered:
I'm having the same issue. I was able to get a token, but only by providing both the username=test&password=test url params as well as the Authorization: Basic header. What's even stranger, is the two didn't even need to match!
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.
The text was updated successfully, but these errors were encountered: