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
Could you please provide me instructions how can i add client?
I am able to add row to the oauth_client_details table.
Because of which, when i call /oauth/token rest service. I am getting unauthorized access error.
Can you please explain me how to add client?
Thanks
The text was updated successfully, but these errors were encountered:
The documentation is surprisingly lacking, I thought we had instructions on getting access tokens. We'll get that fixed.
Adding a row to oauth_client_details is correct. Once you do, you should use HTTP Basic to request the access token from the /oauth/token endpoint. If the client ID is testClient and the client secret is testClientSecret, then Base64 encode testClient:testClientSecret and set it as an Authorization header, in this case with value Basic dGVzdENsaWVudDp0ZXN0Q2xpZW50U2VjcmV0. You can see examples in the Postman requests.
Could you please provide me instructions how can i add client?
I am able to add row to the oauth_client_details table.
Because of which, when i call /oauth/token rest service. I am getting unauthorized access error.
Can you please explain me how to add client?
Thanks
The text was updated successfully, but these errors were encountered: