Recommended use
The resource owner password credentials grant type is suitable in cases where the resource owner has a trust relationship with the client (e.g., a service’s own mobile client) and in situations where the client can obtain the resource owner’s credentials.
...
Instead of redirecting the user to the authorization server, the client itself will ask the user for the resource owner's username and password. The client will then send these credentials to the authorisation authorization server along with the client’s own credentials.
The diagram below illustrates the resource owner password credentials grant flow.
Support for refresh token grant - Yes
The cURL commands below can be used to try this grant type.
...
You will receive a response similiar similar to the format below.
Code Block | ||
---|---|---|
| ||
{"token_type":"Bearer","expires_in":2510,"refresh_token":"5ba3dedc77581df5f84f9b228eef0b91","access_token":"ca19a540f544777860e44e75f605d927"} |
...